
:root{
  --fg:#e8ecef;
  --text:#1c232b;
  --muted:rgba(28,35,43,.72);
  --line:rgba(255,255,255,.18);

  --persp:1780px;
  --roomD:7600px;
  --corridorWidth:1800px;
  --corridorHeight:1100px;
  --corridorHalf:900px;

  --cameraShiftX:0px;
  --cameraShiftY:0px;
  --cameraYaw:0deg;
  --cameraPitch:1.18deg;

  --radius:26px;
  --panelW:min(600px, 88vw);
  --panelH:min(390px, 58vh);
  --panelTop:47%;
  --panelLeftX:35%;
  --panelRightX:65%;
  --mobileFadeBehind:920;
  --mobileFadeAhead:3200;
  --mobileWithinBehind:-760;
  --mobileTxFactor:0.52;
  --contentMax:min(1220px, 92vw);

  --transition:220ms ease;
  --shadow-lg:0 40px 120px rgba(10,12,14,.22);
  --shadow-md:0 20px 48px rgba(10,12,14,.12);
}

*{box-sizing:border-box}
html,body{height:100%}
html{
  scroll-behavior:smooth;
  overscroll-behavior:none;
  background:
    radial-gradient(1400px 800px at 50% 0%, rgba(72,78,86,.08), transparent 50%),
    linear-gradient(180deg, #111316 0%, #0c0e11 100%);
}
html.no-page-smooth-scroll{scroll-behavior:auto;}
body{
  margin:0;
  overflow-x:hidden;
  overflow-y:auto;
  color:var(--fg);
  font:15px/1.55 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  background:
    radial-gradient(1200px 720px at 50% -10%, rgba(78,84,92,.08), transparent 46%),
    radial-gradient(900px 520px at 14% 30%, rgba(95,102,110,.04), transparent 44%),
    radial-gradient(920px 600px at 85% 80%, rgba(95,102,110,.05), transparent 45%),
    linear-gradient(180deg, #121417 0%, #0e1013 52%, #0a0c0f 100%);
}
button,input,select,textarea{font:inherit}
img{display:block;max-width:100%}
a{color:inherit}

.siteTitle{
  position:fixed;
  top:22px;
  left:50%;
  transform:translateX(-50%);
  z-index:86;
  width:min(780px, calc(100vw - 120px));
  text-align:center;
  pointer-events:none;
}
.siteTitle__kicker{
  margin:0 0 6px;
  color:rgba(255,255,255,.68);
  font-size:11px;
  line-height:1;
  letter-spacing:.34em;
  text-transform:uppercase;
}
.siteTitle__wordmark{
  margin:0;
  color:#ffffff;
  font-family:"Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  font-size:clamp(32px, 4.2vw, 66px);
  font-weight:600;
  line-height:.95;
  letter-spacing:.08em;
  text-transform:uppercase;
  text-shadow:0 10px 30px rgba(0,0,0,.42), 0 2px 10px rgba(0,0,0,.3);
}
@media (max-width: 900px){
  .siteTitle{
    top:18px;
    width:min(92vw, 640px);
  }
  .siteTitle__kicker{letter-spacing:.26em;font-size:10px}
  .siteTitle__wordmark{font-size:clamp(28px, 9vw, 48px)}
}
@media (max-height: 760px){
  .siteTitle{top:14px}
  .siteTitle__kicker{margin-bottom:4px}
}

.skipLink{
  position:fixed;
  left:14px;
  top:14px;
  z-index:500;
  background:#fff;
  color:#111;
  padding:10px 14px;
  border-radius:999px;
  text-decoration:none;
  transform:translateY(-140%);
  transition:transform var(--transition);
}
.skipLink:focus{transform:translateY(0)}

.siteHeader{
  position:fixed;
  inset:16px 18px auto;
  z-index:120;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  backdrop-filter:blur(16px);
  background:linear-gradient(180deg, rgba(22,24,28,.72), rgba(11,13,16,.66));
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}
.brand{
  border:0;
  background:none;
  color:inherit;
  display:flex;
  align-items:center;
  gap:12px;
  cursor:pointer;
  min-width:0;
}
.brandMark{
  width:34px;
  height:34px;
  border-radius:50%;
  background:
    radial-gradient(circle at 40% 35%, rgba(255,255,255,.86), rgba(255,255,255,.15) 38%, rgba(255,255,255,0) 42%),
    radial-gradient(circle at 62% 60%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(255,255,255,.45), rgba(255,255,255,.04));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.28), 0 6px 18px rgba(0,0,0,.22);
}
.brandText{display:flex;flex-direction:column;align-items:flex-start;gap:2px;line-height:1.15}
.brandText strong{font-size:14px;letter-spacing:.02em}
.brandText span{font-size:12px;color:rgba(232,236,239,.72)}

.siteNav,.headerActions{
  display:flex;
  align-items:center;
  gap:8px;
}
.navButton,.ticketButton{
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  padding:10px 14px;
  background:rgba(255,255,255,.03);
  color:inherit;
  cursor:pointer;
  transition:background var(--transition), border-color var(--transition), transform var(--transition);
}
.navButton:hover,.navButton:focus-visible,.ticketButton:hover,.ticketButton:focus-visible{
  background:rgba(255,255,255,.09);
  border-color:rgba(255,255,255,.32);
  transform:translateY(-1px);
}
.navButton--ghost{background:transparent}
.ticketButton{
  background:linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.08));
  font-weight:700;
}

.corridorIntro{
  position:fixed;
  inset:auto 24px 18px auto;
  z-index:90;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(11,13,16,.44);
  backdrop-filter:blur(14px);
  color:rgba(232,236,239,.72);
  box-shadow:0 12px 28px rgba(0,0,0,.18);
}
.corridorIntro p{margin:0;font-size:12px}

#scrollProxy{
  position:relative;
  width:1px;
  height:9000px;
  pointer-events:none;
  opacity:0;
}

.viewport{
  position:fixed;
  inset:0;
  pointer-events:none;
  overflow:hidden;
}

.scene{
  position:absolute;
  inset:0;
  perspective:var(--persp);
  perspective-origin:50% 42%;
  overflow:hidden;
  background:
    radial-gradient(1000px 500px at 50% 10%, rgba(255,255,255,.05), transparent 58%),
    radial-gradient(860px 520px at 50% 78%, rgba(255,255,255,.02), transparent 66%),
    linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,0));
}
.scene > *{
  position:absolute;
  inset:0;
  pointer-events:none;
}
.sceneDust{
  background:
    radial-gradient(1px 1px at 15% 28%, rgba(255,255,255,.12) 98%, transparent),
    radial-gradient(1px 1px at 44% 18%, rgba(255,255,255,.08) 98%, transparent),
    radial-gradient(1px 1px at 73% 44%, rgba(255,255,255,.09) 98%, transparent),
    radial-gradient(1px 1px at 82% 24%, rgba(255,255,255,.07) 98%, transparent),
    radial-gradient(1px 1px at 35% 62%, rgba(255,255,255,.06) 98%, transparent);
  opacity:.5;
}
.sceneGlow{
  background:
    radial-gradient(900px 460px at 50% 38%, rgba(255,255,255,.05), transparent 62%),
    radial-gradient(1400px 740px at 50% 100%, rgba(255,255,255,.025), transparent 60%);
}
.sceneFrame{
  border:1px solid rgba(255,255,255,.04);
  inset:16px;
  border-radius:28px;
}
.sceneCenterline{
  background:linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.06) 50%, transparent 50.2%);
  opacity:.4;
}
.sceneFloorGlow{
  background:radial-gradient(900px 260px at 50% 86%, rgba(255,255,255,.05), transparent 72%);
}
.sceneHalo{
  background:radial-gradient(760px 260px at 50% 42%, rgba(255,255,255,.06), transparent 75%);
}
.sceneSideFade{
  background:linear-gradient(90deg, rgba(8,9,11,.66) 0%, transparent 18%, transparent 82%, rgba(8,9,11,.66) 100%);
}
.sceneTopFade{
  background:linear-gradient(180deg, rgba(8,9,11,.45) 0%, transparent 28%);
}
.sceneBottomFade{
  background:linear-gradient(0deg, rgba(8,9,11,.58) 0%, transparent 22%);
}
.sceneBeam{
  background:linear-gradient(180deg, rgba(255,255,255,.06), transparent 28%, transparent 78%, rgba(255,255,255,.03));
  mix-blend-mode:screen;
  opacity:.15;
}
.sceneBeam--alt{
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.05) 50%, transparent 100%);
  opacity:.08;
}

.room{
  position:relative;
  width:100%;
  height:100%;
  transform-style:preserve-3d;
  transform:
    translate3d(var(--cameraShiftX), var(--cameraShiftY), 0)
    translateZ(calc(var(--z, 0) * 1px))
    rotateX(var(--cameraPitch))
    rotateY(var(--cameraYaw));
  will-change:transform;
}

.floor,.ceiling,.wall,.endWall{
  position:absolute;
  left:50%;
  top:50%;
  transform-style:preserve-3d;
  backface-visibility:hidden;
}
.floor::before,.floor::after,.ceiling::before,.ceiling::after,.wall::before,.wall::after,.endWall::before{
  content:"";
  position:absolute;
  inset:0;
}

.floor,.ceiling{
  width:calc(var(--corridorWidth) + 500px);
  height:calc(var(--roomD) + 2600px);
}

.floor{
  transform:translate3d(-50%,-50%,0) rotateX(90deg) translateZ(545px);
  background:
    linear-gradient(90deg,
      rgba(52,55,61,.35) 0%,
      rgba(26,28,32,.92) 10%,
      rgba(18,20,24,.98) 50%,
      rgba(26,28,32,.92) 90%,
      rgba(52,55,61,.35) 100%
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.00) 0 132px,
      rgba(255,255,255,.05) 132px 134px,
      rgba(255,255,255,.00) 134px 264px
    );
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.03),
    0 80px 180px rgba(0,0,0,.55);
}
.floor::before{
  background:
    linear-gradient(90deg, transparent 0%, rgba(255,255,255,.08) 18%, rgba(255,255,255,.16) 50%, rgba(255,255,255,.08) 82%, transparent 100%),
    radial-gradient(60% 120% at 50% 8%, rgba(255,255,255,.10), transparent 70%);
  opacity:.75;
}
.floor::after{
  inset:10% 20%;
  border-radius:999px;
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(255,255,255,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 80%);
  filter:blur(18px);
  opacity:.68;
}

.ceiling{
  transform:translate3d(-50%,-50%,0) rotateX(-90deg) translateZ(555px);
  background:
    linear-gradient(90deg,
      rgba(42,46,52,.26) 0%,
      rgba(23,25,30,.88) 14%,
      rgba(18,20,24,.96) 50%,
      rgba(23,25,30,.88) 86%,
      rgba(42,46,52,.26) 100%
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255,255,255,.00) 0 220px,
      rgba(255,255,255,.05) 220px 221px,
      rgba(255,255,255,.00) 221px 440px
    );
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.03);
}
.ceiling::before{
  inset:0 28%;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.10) 0 170px, rgba(255,255,255,.03) 170px 198px, rgba(255,255,255,.00) 198px 420px);
  opacity:.82;
  filter:blur(1px);
}
.ceiling::after{
  inset:0 12%;
  background:linear-gradient(90deg, transparent 0%, rgba(255,255,255,.05) 18%, rgba(255,255,255,.02) 50%, rgba(255,255,255,.05) 82%, transparent 100%);
}

.wall{
  width:calc(var(--roomD) + 2600px);
  height:calc(var(--corridorHeight) + 260px);
  background:
    linear-gradient(180deg, rgba(29,31,36,.98) 0%, rgba(16,18,21,.985) 28%, rgba(9,11,14,.97) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.00) 0 360px, rgba(255,255,255,.08) 360px 362px, rgba(255,255,255,.00) 362px 720px),
    radial-gradient(780px 360px at 50% 30%, rgba(255,255,255,.05), transparent 62%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.wall::before{
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 358px, rgba(255,255,255,.08) 358px 378px, rgba(255,255,255,0) 378px 720px),
    linear-gradient(180deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 36%, rgba(255,255,255,.00) 100%);
  opacity:.8;
}
.wall::after{
  inset:10% 0 12%;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 358px, rgba(255,255,255,.06) 358px 361px, rgba(255,255,255,0) 361px 720px),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,0) 18%, rgba(255,255,255,.02) 100%);
  opacity:.68;
}
.wall.left{transform:translate3d(-50%,-50%,0) rotateY(90deg) translateZ(var(--corridorHalf))}
.wall.right{transform:translate3d(-50%,-50%,0) rotateY(-90deg) translateZ(var(--corridorHalf))}

.endWall{
  width:var(--corridorWidth);
  height:var(--corridorHeight);
  transform:translate3d(-50%,-50%,0) translateZ(calc(var(--roomD) * -1));
  background:
    radial-gradient(900px 540px at 50% 34%, rgba(255,255,255,.08), transparent 55%),
    linear-gradient(180deg, rgba(20,23,28,.98), rgba(10,12,15,.98));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    0 0 120px rgba(0,0,0,.35);
}
.endWall::before{
  inset:7% 17%;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(70% 40% at 50% 24%, rgba(255,255,255,.08), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02), 0 0 80px rgba(255,255,255,.03);
}
.endCard{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(560px, 82%);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(20,22,27,.88), rgba(11,13,16,.84));
  padding:22px 22px 20px;
  box-shadow:0 30px 90px rgba(0,0,0,.32);
}
.endTitle{font-weight:800;letter-spacing:.02em;font-size:22px;color:#f4f7f8}
.endSub{margin-top:8px;color:rgba(232,236,239,.72);font-size:14px}
.endCard--legal{
  width:min(760px, 88%);
  display:grid;
  gap:10px;
  text-align:left;
}
.endKicker{
  margin:0;
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(232,236,239,.68);
  font-weight:700;
}
.endMeta{
  color:rgba(232,236,239,.80);
  font-size:14px;
  line-height:1.55;
}
.endLegalLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:4px;
}
.endLink{
  appearance:none;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:#f4f7f8;
  padding:10px 14px;
  cursor:pointer;
  transition:border-color var(--transition), background var(--transition), transform var(--transition);
}
.endLink:hover{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.10);
  transform:translateY(-1px);
}

.vignette{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(1200px 760px at 50% 46%, rgba(255,255,255,0) 38%, rgba(0,0,0,.44) 100%),
    linear-gradient(180deg, rgba(255,255,255,.00), rgba(0,0,0,.08));
}

#panelLayer{
  position:fixed;
  inset:0;
  z-index:80;
  pointer-events:none;
  perspective:1600px;
}
.panel{
  pointer-events:auto;
  position:absolute;
  top:var(--panelTop);
  width:var(--panelW);
  height:var(--panelH);
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,.16);
  background:var(--panelFallback, #2b3138);
  box-shadow:0 30px 80px rgba(0,0,0,.34), 0 12px 24px rgba(0,0,0,.22);
  color:#fff;
  cursor:pointer;
  padding:26px 22px 18px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  gap:10px;
  text-align:center;
  user-select:none;
  outline:none;
  overflow:hidden;
  isolation:isolate;
  opacity:var(--o, 1);
  transform:
    translate3d(-50%, -50%, 0)
    translate3d(var(--tx, 0px), var(--ty, 0px), 0)
    scale(var(--s, 1))
    rotateY(var(--ry, 0deg));
  transition:box-shadow var(--transition), border-color var(--transition), filter var(--transition);
  will-change:transform, opacity;
}
.panel::before,.panel::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
}
.panel::before{
  z-index:0;
  background-image:var(--panelBgImage);
  background-size:cover;
  background-repeat:no-repeat;
  background-position:var(--panelBgPos, center center);
  transform:scale(1.02);
  transition:transform var(--transition), filter var(--transition);
}
.panel::after{
  z-index:1;
  background:
    radial-gradient(120% 90% at 18% 18%, rgba(255,255,255,.24), transparent 44%),
    linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(9,11,14,.08) 26%, rgba(8,10,14,.58) 100%),
    linear-gradient(90deg, rgba(8,10,14,.24) 0%, rgba(255,255,255,.00) 30%, rgba(255,255,255,.00) 70%, rgba(8,10,14,.24) 100%);
}
.panel > *{position:relative;z-index:2}
.panelHeadingGroup{
  width:min(88%, 420px);
  display:grid;
  justify-items:center;
  gap:12px;
  margin-top:4px;
}
.panel.left{left:var(--panelLeftX);--ry:10deg}
.panel.right{left:var(--panelRightX);--ry:-10deg}
.panel:hover{
  border-color:rgba(255,255,255,.30);
  box-shadow:0 42px 110px rgba(0,0,0,.40), 0 18px 36px rgba(0,0,0,.26);
  filter:brightness(1.04);
}
.panel:hover::before{transform:scale(1.045);filter:saturate(1.04)}
.panel:focus-visible,
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:2px solid rgba(118,180,255,.88);
  outline-offset:3px;
}
.panelTag{
  position:absolute;
  top:14px;left:14px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  color:rgba(255,255,255,.94);
  background:rgba(10,12,16,.40);
  border:1px solid rgba(255,255,255,.20);
  box-shadow:0 10px 24px rgba(0,0,0,.24);
  padding:6px 10px;
  border-radius:999px;
  backdrop-filter:blur(8px);
}
.panelTitle{
  font-weight:800;
  font-size:48px;
  letter-spacing:-.03em;
  line-height:1;
  text-shadow:0 8px 24px rgba(5,6,8,.76);
  display:block;
}
.panelSub{
  color:rgba(255,255,255,.92);
  font-size:14px;
  line-height:1.4;
  max-width:34ch;
  text-shadow:0 4px 16px rgba(5,6,8,.76);
  display:block;
  margin-inline:auto;
}
.panel[aria-hidden="true"]{opacity:0 !important}

.overlay{
  position:fixed;
  inset:0;
  z-index:200;
  opacity:0;
  pointer-events:none;
  background:rgba(9,11,14,.52);

  --section-page-bg:
    radial-gradient(980px 620px at 16% 10%, rgba(255,255,255,.82), transparent 55%),
    linear-gradient(180deg, #f5f7f9 0%, #ecf1f4 58%, #e3e9ee 100%);
  --section-surface:rgba(255,255,255,.48);
  --section-surface-strong:rgba(255,255,255,.76);
  --section-border:rgba(92,104,116,.16);
  --section-fg:#1c232b;
  --section-muted:rgba(28,35,43,.72);
  --section-card-text:rgba(28,35,43,.84);
  --section-row-bg:rgba(255,255,255,.42);
  --section-pill-bg:rgba(255,255,255,.54);
  --section-back-bg:rgba(255,255,255,.82);
  --section-back-border:rgba(87,100,115,.18);
  --section-shadow:rgba(16,20,24,.18);
}
.overlay.open{opacity:1;pointer-events:auto}
.overlayBack{
  position:fixed;
  top:18px;
  left:18px;
  z-index:220;
  width:48px;height:48px;
  border-radius:999px;
  border:1px solid var(--section-back-border);
  background:var(--section-back-bg);
  color:var(--section-fg);
  cursor:pointer;
  display:grid;
  place-items:center;
  font-size:22px;
  box-shadow:0 18px 38px rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
}
.overlayStage{position:absolute;inset:0}
.overlayCard{
  position:fixed;
  inset:0;
  border:1px solid var(--section-border);
  background:var(--section-page-bg);
  box-shadow:0 50px 140px var(--section-shadow);
  overflow:auto;
  color:var(--section-fg);
}
.sheet{
  width:var(--contentMax);
  margin:72px auto 92px;
  color:var(--section-fg);
}
.pageHero{
  padding:16px 6px 6px;
}
.heroCopy{
  display:grid;
  gap:12px;
  max-width:76ch;
}
.eyebrow{
  margin:0;
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--section-muted);
  font-weight:700;
}
h1,h2,h3{margin:0;line-height:1.08;letter-spacing:-.03em}
.pageHero h1{font-size:clamp(40px, 5vw, 62px)}
.lede{
  margin:0;
  font-size:clamp(18px, 2vw, 24px);
  max-width:32ch;
}
.supporting,.body,.microcopy,.siteFooter p,.featureCard p,.programCard p,.artistCard p,.productCard p,.contactCard p{
  margin:0;
  color:var(--section-card-text);
}
.supporting{max-width:68ch}
.band{
  margin-top:24px;
}
.bandIntro{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}
.bandIntro h2{font-size:clamp(28px, 3vw, 38px)}

.grid-12{
  display:grid;
  grid-template-columns:repeat(12, minmax(0, 1fr));
  gap:16px;
}
.span-4{grid-column:span 4}
.span-5{grid-column:span 5}
.span-6{grid-column:span 6}
.span-7{grid-column:span 7}
.span-8{grid-column:span 8}

.card,.mediaCard,.featureCard,.eventCard,.miniProfile,.artistCard,.archiveCard,.productCard,.contactCard,.smallProduct,.newsletterCard,.quoteBand blockquote{
  border-radius:24px;
  border:1px solid var(--section-border);
  box-shadow:0 18px 42px rgba(17,22,27,.08);
}
.card,.featureCard,.eventCard,.miniProfile,.artistCard,.archiveCard,.productCard,.contactCard,.smallProduct{
  padding:18px;
  background:var(--section-surface);
  backdrop-filter:blur(8px);
}
.glass{background:linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.34))}
.matte{background:linear-gradient(180deg, rgba(255,255,255,.46), rgba(255,255,255,.28))}
.cardHeader{display:grid;gap:8px;margin-bottom:12px}
.cardHeader h2{font-size:clamp(24px, 3vw, 34px)}
.cardHeader h3{font-size:20px}
.metaList{
  display:grid;
  gap:10px;
  margin-top:16px;
}
.metaList div,.detailsGrid div{
  display:grid;
  gap:4px;
  padding:12px 14px;
  border-radius:18px;
  background:var(--section-row-bg);
  border:1px solid var(--section-border);
}
.metaList span,.detailsGrid span{font-size:12px;text-transform:uppercase;letter-spacing:.12em;color:var(--section-muted)}
.metaList--stack{margin-top:18px}
.featureList,.infoBullets{
  margin:16px 0 0;
  padding-left:20px;
  color:var(--section-card-text);
}
.featureList li,.infoBullets li{margin:7px 0}
.infoBullets.compact li{margin:5px 0}

.scheduleList{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.scheduleList li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid var(--section-border);
  background:var(--section-row-bg);
}
.scheduleList strong{font-weight:700}
.scheduleList span{color:var(--section-muted);text-align:right}

.pillRow,.actionRow,.sectionLinks,.filterRow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.sectionLinks{
  position:sticky;
  top:16px;
  z-index:2;
  margin:0 0 18px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--section-border);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(14px);
  width:max-content;
  max-width:100%;
}
.pill,.chipButton,.button,.badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid var(--section-border);
}
.pill{
  padding:8px 12px;
  background:var(--section-pill-bg);
  font-size:12px;
}
.chipButton{
  padding:10px 14px;
  background:var(--section-pill-bg);
  color:var(--section-fg);
  cursor:pointer;
}
.chipButton--accent{font-weight:700}
.chipButton.is-active{
  background:var(--section-fg);
  color:#fff;
  border-color:transparent;
}
.button{
  padding:12px 16px;
  background:var(--section-fg);
  color:#fff;
  cursor:pointer;
  font-weight:700;
  transition:transform var(--transition), opacity var(--transition), background var(--transition);
}
.button:hover,.button:focus-visible{transform:translateY(-1px);opacity:.96}
.button--secondary{
  background:rgba(255,255,255,.50);
  color:var(--section-fg);
}
.textCta,.textLink,.inlineButton{
  border:0;
  background:none;
  padding:0;
  cursor:pointer;
  color:var(--section-fg);
  font-weight:700;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}
.textLink--block{
  display:block;
  padding:12px 0;
}
.inlineButton{display:inline}
.stackLinks{display:grid;gap:8px}

.mediaCard{
  margin:0;
  overflow:hidden;
  background:rgba(255,255,255,.42);
}
.mediaCard img,.thumbFigure img,.artistCard img,.productCard img,.miniProfile img,.archiveCard img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.mediaCard img{aspect-ratio:1.2/1;min-height:100%}
.mediaCard figcaption,.thumbFigure figcaption{
  padding:12px 14px 14px;
  color:var(--section-muted);
  font-size:13px;
}
.thumbFigure{
  margin:0 0 14px;
  overflow:hidden;
  border-radius:18px;
  background:rgba(255,255,255,.34);
}
.thumbFigure img{
  aspect-ratio:1.28/1;
  transition:transform 280ms ease;
}
.featureCard:hover .thumbFigure img,
.programCard:hover .thumbFigure img,
.mediaCard:hover img,
.artistCard:hover img,
.productCard:hover img,
.miniProfile:hover img,
.archiveCard:hover img{
  transform:scale(1.03);
}
.dateLabel,.discipline,.price,.badge{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--section-muted);
}
.badge{
  width:max-content;
  padding:8px 10px;
  background:var(--section-pill-bg);
  margin-top:12px;
}
.price{
  font-size:18px;
  letter-spacing:0;
  text-transform:none;
  font-weight:800;
  color:var(--section-fg);
}
.cardGrid{
  display:grid;
  gap:16px;
}
.cardGrid--3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.cardGrid--4{grid-template-columns:repeat(4, minmax(0, 1fr))}
.featureCard,.programCard,.artistCard,.archiveCard,.productCard,.miniProfile,.contactCard,.smallProduct{
  display:grid;
  gap:12px;
}
.heroCards .card{min-height:100%}
.eventStrip{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:16px;
}
.eventCard,.contactCard,.smallProduct{gap:10px}
.eventDate{margin:0;color:var(--section-muted);font-size:13px;font-weight:700}
.miniProfile img,.artistCard img{
  aspect-ratio:1.05/1;
  border-radius:18px;
}
.archiveCard img,.productCard img{aspect-ratio:1.15/1;border-radius:18px}
.shopGrid .productCard[hidden]{display:none}
.emptyState{
  padding:22px;
  border-radius:22px;
  border:1px dashed var(--section-border);
  background:rgba(255,255,255,.28);
}
.splitMini{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:16px;
}
.detailsGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}
.scheduleTable{
  display:grid;
  gap:10px;
}
.scheduleRow{
  display:grid;
  grid-template-columns:1.1fr 1.2fr .7fr .9fr;
  gap:14px;
  align-items:center;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--section-border);
  background:var(--section-row-bg);
}
.scheduleRow--head{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color:var(--section-muted);
}
.scheduleRow strong{font-weight:700}
.newsletterBand{margin-top:26px}
.newsletterCard{
  padding:24px;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  gap:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.62), rgba(255,255,255,.34));
}
.inlineForm,.contactForm{display:grid;gap:14px}
.inlineForm{
  align-items:end;
  grid-template-columns:1fr auto;
}
.inlineForm label,.contactForm label{
  display:grid;
  gap:8px;
}
.inlineForm label span,.contactForm label span,.checkboxLabel span{font-weight:600}
input,select,textarea{
  width:100%;
  border-radius:16px;
  border:1px solid var(--section-border);
  background:rgba(255,255,255,.62);
  color:var(--section-fg);
  padding:12px 14px;
}
textarea{resize:vertical;min-height:140px}
.formGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.formGrid .full{grid-column:1 / -1}
.checkboxLabel{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.checkboxLabel input{
  width:18px;
  height:18px;
  margin-top:2px;
}
.formStatus{
  min-height:1.3em;
  margin:0;
  color:var(--section-muted);
}
.quoteBand blockquote{
  margin:0;
  padding:28px 32px;
  background:linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.32));
}
.quoteBand p{
  margin:0;
  font-size:clamp(24px, 3vw, 34px);
  max-width:24ch;
}
.quoteBand footer{
  margin-top:10px;
  color:var(--section-muted);
}
.strongLine{
  margin:14px 2px 0;
  color:var(--section-card-text);
}
.dot{opacity:.6;margin:0 .4ch}
.siteFooter{
  margin-top:28px;
  padding:24px;
  display:grid;
  gap:18px;
  border-radius:26px;
  border:1px solid var(--section-border);
  background:rgba(255,255,255,.34);
  box-shadow:var(--shadow-md);
}
.footerBrand .wordmark{font-weight:800;font-size:18px}
.footerBrand p,.footerLegal p{margin:8px 0;color:var(--section-card-text)}
.footerNav{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
}
.footerLegal{
  display:grid;
  gap:4px;
  font-size:13px;
}
.closingCta{
  padding:24px;
  border-radius:26px;
  border:1px solid var(--section-border);
  background:linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.34));
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.accordionList{display:grid;gap:12px}
.accordionItem{
  border-radius:22px;
  border:1px solid var(--section-border);
  background:rgba(255,255,255,.40);
  overflow:hidden;
}
.accordionTrigger{
  width:100%;
  border:0;
  background:none;
  padding:18px 20px;
  text-align:left;
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--section-fg);
  cursor:pointer;
  font-weight:700;
}
.accordionTrigger::after{
  content:"+";
  font-size:24px;
  line-height:1;
}
.accordionTrigger[aria-expanded="true"]::after{content:"−"}
.accordionPanel{padding:0 20px 18px}
.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:350;
  padding:14px 16px;
  border-radius:18px;
  background:rgba(20,24,28,.92);
  color:#fff;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
  max-width:min(360px, calc(100vw - 32px));
}

.panel[data-id="home"]{
  --panelFallback:rgb(166, 88, 90);
  --panelBgImage:url("../assets/panels/home.webp");
  --panelBgPos:center center;
}
.panel[data-id="exhibitions"]{
  --panelFallback:rgb(189, 128, 66);
  --panelBgImage:url("../assets/panels/exhibitions.webp");
  --panelBgPos:center center;
}
.panel[data-id="artists"]{
  --panelFallback:rgb(103, 132, 92);
  --panelBgImage:url("../assets/panels/artists.webp");
  --panelBgPos:center center;
}
.panel[data-id="visit"]{
  --panelFallback:rgb(122, 154, 187);
  --panelBgImage:url("../assets/panels/visit.webp");
  --panelBgPos:center center;
}
.panel[data-id="shop"]{
  --panelFallback:rgb(124, 102, 160);
  --panelBgImage:url("../assets/panels/shop.webp");
  --panelBgPos:center center;
}
.panel[data-id="contact"]{
  --panelFallback:rgb(194, 155, 79);
  --panelBgImage:url("../assets/panels/contact.webp");
  --panelBgPos:center center;
}

.overlay[data-section="home"]{
  --section-page-bg:
    radial-gradient(920px 620px at 16% 14%, rgba(255,255,255,.82), transparent 55%),
    linear-gradient(180deg, #f6e3e1 0%, #efc8c4 56%, #e5aea8 100%);
  --section-surface:rgba(255,255,255,.46);
  --section-border:rgba(133,86,80,.16);
  --section-fg:#552d31;
  --section-muted:rgba(74,47,51,.72);
  --section-card-text:rgba(74,47,51,.84);
  --section-row-bg:rgba(255,255,255,.40);
  --section-pill-bg:rgba(255,255,255,.52);
  --section-back-bg:rgba(255,248,247,.84);
  --section-back-border:rgba(133,86,80,.18);
  --section-shadow:rgba(181,142,136,.22);
}
.overlay[data-section="exhibitions"]{
  --section-page-bg:
    radial-gradient(920px 620px at 18% 12%, rgba(255,255,255,.84), transparent 54%),
    linear-gradient(180deg, #f8ebdf 0%, #f2d1ab 56%, #e6b77f 100%);
  --section-surface:rgba(255,255,255,.45);
  --section-border:rgba(145,103,52,.16);
  --section-fg:#5a3c1b;
  --section-muted:rgba(90,60,27,.72);
  --section-card-text:rgba(90,60,27,.84);
  --section-row-bg:rgba(255,255,255,.38);
  --section-pill-bg:rgba(255,255,255,.50);
  --section-back-bg:rgba(255,250,244,.84);
  --section-back-border:rgba(145,103,52,.18);
  --section-shadow:rgba(192,157,111,.20);
}
.overlay[data-section="artists"]{
  --section-page-bg:
    radial-gradient(900px 620px at 18% 12%, rgba(255,255,255,.84), transparent 54%),
    linear-gradient(180deg, #eef3e8 0%, #d4e0c8 56%, #b8cba9 100%);
  --section-surface:rgba(255,255,255,.44);
  --section-border:rgba(80,103,73,.16);
  --section-fg:#334535;
  --section-muted:rgba(51,69,53,.72);
  --section-card-text:rgba(51,69,53,.84);
  --section-row-bg:rgba(255,255,255,.38);
  --section-pill-bg:rgba(255,255,255,.50);
  --section-back-bg:rgba(248,250,245,.84);
  --section-back-border:rgba(80,103,73,.18);
  --section-shadow:rgba(146,164,141,.20);
}
.overlay[data-section="visit"]{
  --section-page-bg:
    radial-gradient(930px 620px at 18% 12%, rgba(255,255,255,.88), transparent 54%),
    linear-gradient(180deg, #e8f0fb 0%, #cfe0f5 56%, #b2caeb 100%);
  --section-surface:rgba(255,255,255,.46);
  --section-border:rgba(78,106,143,.15);
  --section-fg:#263f60;
  --section-muted:rgba(38,63,96,.72);
  --section-card-text:rgba(38,63,96,.84);
  --section-row-bg:rgba(255,255,255,.40);
  --section-pill-bg:rgba(255,255,255,.52);
  --section-back-bg:rgba(247,250,255,.84);
  --section-back-border:rgba(78,106,143,.18);
  --section-shadow:rgba(146,170,201,.20);
}
.overlay[data-section="shop"]{
  --section-page-bg:
    radial-gradient(940px 620px at 18% 12%, rgba(255,255,255,.84), transparent 54%),
    linear-gradient(180deg, #f0e8f8 0%, #ddcbee 56%, #c4aee2 100%);
  --section-surface:rgba(255,255,255,.44);
  --section-border:rgba(89,69,121,.15);
  --section-fg:#44315c;
  --section-muted:rgba(68,49,92,.72);
  --section-card-text:rgba(68,49,92,.84);
  --section-row-bg:rgba(255,255,255,.40);
  --section-pill-bg:rgba(255,255,255,.50);
  --section-back-bg:rgba(251,248,255,.84);
  --section-back-border:rgba(89,69,121,.18);
  --section-shadow:rgba(154,139,182,.20);
}
.overlay[data-section="contact"]{
  --section-page-bg:
    radial-gradient(940px 620px at 18% 12%, rgba(255,255,255,.90), transparent 54%),
    linear-gradient(180deg, #fbf4d7 0%, #f6e49e 56%, #edd06f 100%);
  --section-surface:rgba(255,255,255,.48);
  --section-border:rgba(144,118,39,.15);
  --section-fg:#5b4918;
  --section-muted:rgba(91,73,24,.72);
  --section-card-text:rgba(91,73,24,.84);
  --section-row-bg:rgba(255,255,255,.42);
  --section-pill-bg:rgba(255,255,255,.54);
  --section-back-bg:rgba(255,252,242,.84);
  --section-back-border:rgba(144,118,39,.18);
  --section-shadow:rgba(196,177,105,.20);
}

@media (max-width: 1180px){
  .siteHeader{border-radius:28px;inset:14px 14px auto;align-items:flex-start;flex-wrap:wrap}
  .corridorIntro{display:none}
  .cardGrid--4{grid-template-columns:repeat(2, minmax(0,1fr))}
  .eventStrip{grid-template-columns:repeat(2, minmax(0,1fr))}
  .newsletterCard{grid-template-columns:1fr}
}
@media (max-width: 980px){
  :root{
    --panelTop:52%;
    --panelLeftX:33%;
    --panelRightX:67%;
    --panelH:min(360px, 56vh);
  }
  .grid-12,.cardGrid--3,.eventStrip{grid-template-columns:1fr}
  .span-4,.span-5,.span-6,.span-7,.span-8{grid-column:auto}
  .scheduleRow{grid-template-columns:1fr}
  .splitMini,.detailsGrid,.formGrid,.inlineForm{grid-template-columns:1fr}
  .closingCta{display:grid}
  .sectionLinks{width:100%}
}
@media (max-width: 720px){
  :root{
    --panelTop:49%;
    --panelLeftX:31%;
    --panelRightX:74%;
    --panelW:min(72vw, 420px);
    --panelH:min(58vh, 640px);
    --corridorHalf:820px;
  }
  body{overflow-x:hidden}
  #panelLayer{
    position:fixed;
    inset:0;
    z-index:80;
    perspective:1400px;
    display:block;
    padding:0;
    pointer-events:none;
    touch-action:none;
  }
  .panel{
    position:absolute;
    min-height:0;
    width:var(--panelW);
    height:var(--panelH);
    touch-action:none;
    aspect-ratio:auto;
    margin:0;
    padding:24px 18px 18px;
    transform:
      translate3d(-50%, -50%, 0)
      translate3d(var(--tx, 0px), var(--ty, 0px), 0)
      scale(var(--s, 1))
      rotateY(var(--ry, 0deg));
    will-change:transform, opacity;
  }
  .panel.left,
  .panel.right{top:var(--panelTop)}
  .panel::before{transform:scale(1.02)}
  .panelHeadingGroup{
    width:min(92%, 320px);
    gap:10px;
    margin-top:8px;
  }
  .siteNav{width:100%;overflow:auto}
  .headerActions{margin-left:auto}
  .panelTitle{font-size:clamp(34px, 7vw, 42px)}
  .panelSub{font-size:13px;max-width:20ch}
  .sheet{margin:74px auto 86px}
  .pageHero h1{font-size:40px}
  .cardGrid--4{grid-template-columns:1fr}
  .overlayBack{top:14px;left:14px}
}
@media (max-width: 560px){
  :root{
    --panelTop:48%;
    --panelLeftX:31%;
    --panelRightX:77%;
    --panelW:min(74vw, 390px);
    --panelH:min(56vh, 600px);
  }
  .siteHeader{padding:12px}
  .brandText span{display:none}
  .navButton,.ticketButton{padding:10px 12px}
  .panelTag{top:12px;left:12px}
  .panelSub{max-width:18ch}
  .card,.featureCard,.eventCard,.miniProfile,.artistCard,.archiveCard,.productCard,.contactCard,.smallProduct,.newsletterCard,.quoteBand blockquote,.siteFooter,.closingCta{padding:16px}
}

@media (max-width: 720px){
  :root{
    --panelTop:56.5%;
    --panelLeftX:34%;
    --panelRightX:68%;
    --panelW:min(66vw, 350px);
    --panelH:min(50vh, 560px);
  }
  .siteTitle{
    top:14px;
    width:min(90vw, 420px);
  }
  .siteTitle__kicker{
    font-size:9px;
    letter-spacing:.24em;
  }
  .siteTitle__wordmark{
    font-size:clamp(24px, 8.8vw, 42px);
    letter-spacing:.07em;
  }
  .endWall::before{
    inset:5% 7% 8%;
    border-radius:28px;
  }
  .endCard--legal{
    top:41%;
    width:min(84vw, 430px);
    padding:16px 16px 14px;
    gap:8px;
  }
  .endKicker{font-size:10px;letter-spacing:.12em}
  .endTitle{font-size:18px}
  .endMeta{font-size:12px;line-height:1.45}
  .endLegalLinks{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:8px;
    margin-top:2px;
  }
  .endLink{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:8px 10px;
    font-size:12px;
    text-align:center;
  }
  .cookieBanner{
    left:10px;
    right:10px;
    bottom:10px;
    padding:12px 14px;
  }
}
@media (max-width: 560px){
  :root{
    --panelTop:57.5%;
    --panelLeftX:35%;
    --panelRightX:69%;
    --panelW:min(68vw, 340px);
    --panelH:min(52vh, 540px);
  }
  .siteTitle{
    width:min(88vw, 360px);
  }
  .siteTitle__wordmark{
    font-size:clamp(21px, 8vw, 34px);
  }
  .panelTitle{font-size:clamp(28px, 7vw, 36px)}
  .panelSub{font-size:12px;max-width:16ch}
  .panelHeadingGroup{width:min(90%, 240px)}
  .endWall::before{
    inset:5% 4% 8%;
  }
  .endCard--legal{
    left:50%;
    top:39%;
    width:min(92vw, 336px);
    max-width:calc(100vw - 24px);
    padding:14px 12px 12px;
    gap:7px;
    transform:translate(-50%,-50%);
    margin-inline:auto;
  }
  .endTitle{font-size:17px}
  .endMeta{font-size:11.5px;line-height:1.42}
  .endLegalLinks{grid-template-columns:1fr 1fr}
  .endLink{min-height:38px;padding:7px 8px;font-size:11px}
}

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


/* Simplified corridor chrome */
.siteHeader, .corridorIntro, .panelTag{display:none !important;}

.footerNav .textLink{display:inline-flex;align-items:center}


body.legalPage{
  min-height:100vh;
  overflow-y:auto;
  color:#25211c;
  --section-border:rgba(95,78,58,.12);
  --section-surface:#fffdfa;
  --section-fg:#25211c;
  --section-muted:rgba(37,33,28,.66);
  --section-card-text:rgba(37,33,28,.82);
  --section-row-bg:#f6efe7;
  --section-pill-bg:#fffaf4;
  --shadow-md:0 18px 36px rgba(98,80,60,.08);
  background-color:#f4eee6;
  background-image:
    radial-gradient(1200px 720px at 18% 8%, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f7f1e8 0%, #efe6db 100%);
  background-attachment:fixed;
}
html.legal-html{background:#f4eee6;}
.legalPage--privacy{background-image:
    radial-gradient(1200px 720px at 18% 8%, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f8f0e8 0%, #efe4d8 100%);} 
.legalPage--terms{background-image:
    radial-gradient(1200px 720px at 18% 8%, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f7f1ea 0%, #eee4d8 100%);} 
.legalPage--cookies{background-image:
    radial-gradient(1200px 720px at 18% 8%, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f8f2e8 0%, #efe7d9 100%);} 
.legalPage--accessibility{background-image:
    radial-gradient(1200px 720px at 18% 8%, rgba(255,255,255,.72), transparent 48%),
    linear-gradient(180deg, #f6f0e8 0%, #ece4da 100%);} 
.legalPage .viewport,
.legalPage #panelLayer,
.legalPage #scrollProxy,
.legalPage .siteHeader,
.legalPage .corridorIntro{display:none !important}
.legalShell{
  width:min(1200px, 92vw);
  margin:0 auto;
  padding:28px 0 56px;
}
.legalTopbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-bottom:28px;
}
.legalHomeLink{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid rgba(95,78,58,.14);
  background:#fffaf6;
  color:#25211c;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 16px 32px rgba(98,80,60,.08);
}
.legalMiniMeta{color:rgba(37,33,28,.66)}
.legalHero{padding:10px 6px 18px;max-width:78ch;}
.legalHeroMeta{display:flex;flex-wrap:wrap;gap:10px 18px;margin-top:16px;color:rgba(37,33,28,.66)}
.legalLayout{display:grid;grid-template-columns:minmax(220px, 280px) minmax(0, 1fr);gap:22px;align-items:start}
.legalAside{position:sticky;top:18px}
.legalPage .legalAside,
.legalPage .legalArticle,
.legalPage .legalFooter{
  background:#fffdfa;
  border-color:rgba(95,78,58,.12);
  backdrop-filter:none;
  box-shadow:0 20px 40px rgba(98,80,60,.08);
}
.legalPage .legalAside.glass,
.legalPage .legalArticle.matte{background:#fffdfa}
.legalArticle{display:grid;gap:6px}
.legalSection + .legalSection{margin-top:18px;padding-top:18px;border-top:1px solid rgba(95,78,58,.12)}
.legalSection h2{font-size:clamp(24px, 3vw, 30px);margin-bottom:10px}
.legalSection p,
.legalSection li{font-size:16px;line-height:1.7;color:rgba(37,33,28,.84)}
.legalSection ul{margin:0;padding-left:20px;display:grid;gap:8px}
.legalPage a{color:#25211c}
.legalFooter{margin-top:34px}
.legalPage .footerNav .textLink,
.legalPage .stackLinks .textLink{text-decoration-thickness:1px}
@media (max-width: 860px){
  .legalLayout{grid-template-columns:1fr}
  .legalAside{position:static}
  .legalShell{width:min(100%, calc(100vw - 28px))}
}


.endWall,.endCard,.endLegalLinks,.endLink{pointer-events:auto}
.endLink{position:relative;z-index:1}

.cookieBanner{
  position:fixed;
  left:50%;
  right:auto;
  bottom:18px;
  z-index:160;
  width:min(1240px, calc(100vw - 180px));
  margin:0;
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:end;
  gap:10px 18px;
  padding:14px 24px 16px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(180deg, rgba(18,21,26,.97), rgba(11,13,16,.95));
  color:rgba(255,255,255,.94);
  box-shadow:0 22px 54px rgba(0,0,0,.28);
  transform:translateX(-50%);
}
.cookieBanner[hidden]{display:none !important}
.cookieBanner h2{
  margin:0;
  font-size:clamp(17px, 1.8vw, 22px);
  line-height:1.08;
  color:#fff;
  max-width:30ch;
}
.cookieBanner .body,
.cookieBanner .microcopy{
  margin:0;
  color:rgba(255,255,255,.84)
}
.cookieBanner .body{
  font-size:14px;
  line-height:1.38;
  max-width:78ch;
}
.cookieBanner .microcopy{font-size:13px}
.cookieBanner .textLink{color:#fff}
.cookieBanner__copy{display:grid;gap:4px;min-width:0}
.cookieBanner__actions{
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
  align-self:end;
}
.cookieBanner .button{
  min-height:44px;
  padding:10px 18px;
  background:#f6f7f8;
  color:#12161b;
  border-color:transparent;
  white-space:nowrap;
}
.cookieBanner .button--secondary{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.16)}
.cookieBanner .button:hover,
.cookieBanner .button:focus-visible,
.cookieBanner .button--secondary:hover,
.cookieBanner .button--secondary:focus-visible{transform:translateY(-1px);opacity:1}
.cookiePrefsFab,
.cookiePrefsFab[hidden]{display:none !important}
@media (max-width: 1320px){
  .cookieBanner{width:min(1080px, calc(100vw - 72px));}
}
@media (max-width: 1100px){
  .cookieBanner{width:min(880px, calc(100vw - 44px));grid-template-columns:1fr;gap:12px;bottom:16px}
  .cookieBanner__actions{justify-content:flex-start;flex-wrap:wrap}
}
@media (max-width: 860px){
  .cookieBanner{left:14px;right:14px;bottom:14px;width:auto;transform:none;padding:14px 16px;border-radius:20px}
  .cookieBanner__actions{flex-direction:column;align-items:stretch}
  .cookieBanner__actions .button{width:100%}
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .page,
  .panel,
  .contentPanel,
  .grid-12,
  .card,
  .heroPanel,
  .newsletterCard,
  .modalCard,
  .cookieBanner {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .siteNav,
  .panelNav,
  .endLegalLinks {
    -webkit-overflow-scrolling: touch;
  }

  .cardGrid--3,
  .cardGrid--4,
  .eventStrip,
  .detailsGrid,
  .formGrid,
  .inlineForm,
  .legalLayout {
    grid-template-columns: 1fr !important;
  }
}
