:root {
  --ink: #11100f;
  --ink-soft: #25221f;
  --paper: #f2ede3;
  --paper-light: #fbf8f1;
  --paper-muted: #c8c0b5;
  --cyan: #00bed5;
  --magenta: #e5007d;
  --yellow: #f2c800;
  --rule: #4a4540;
  --focus: #7ff3ff;
  --rail: min(1220px, calc(100% - 2 * clamp(20px, 5vw, 76px)));
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper-light);
  background: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .08);
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img, video { display: block; max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--focus);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 76px;
  padding: 14px clamp(20px, 3.5vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper-light);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  background: linear-gradient(to bottom, rgba(17, 16, 15, .9), rgba(17, 16, 15, .55));
  backdrop-filter: blur(14px);
}

.wordmark {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -.03em;
}

.registration-mark {
  position: relative;
  width: 32px;
  height: 22px;
  display: inline-block;
}
.registration-mark i {
  position: absolute;
  inset: 0 9px;
  display: block;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.registration-mark i:nth-child(1) { color: var(--cyan); transform: translateX(-7px); }
.registration-mark i:nth-child(2) { color: var(--magenta); }
.registration-mark i:nth-child(3) { color: var(--yellow); transform: translateX(7px); }

.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--paper-light);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.site-nav a:not(.nav-call):hover { color: var(--cyan); }
.site-nav .nav-call {
  padding: 0 18px;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .55);
}
.site-nav .nav-call:hover { color: var(--ink); background: var(--paper-light); }
.menu-toggle { display: none; }

.press-scene {
  position: relative;
  height: 320svh;
  min-height: 1800px;
  background: var(--ink);
}

.press-stage {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
  background: #2d2523;
}

.press-poster,
.press-video,
.press-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.press-poster,
.press-video {
  object-fit: cover;
  object-position: 58% center;
}
.press-video { z-index: 1; }
.press-poster { z-index: 0; }

.press-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(17, 16, 15, .94) 0%, rgba(17, 16, 15, .76) 36%, rgba(17, 16, 15, .2) 72%, rgba(17, 16, 15, .1)),
    linear-gradient(0deg, rgba(17, 16, 15, .78) 0%, transparent 36%, rgba(17, 16, 15, .2) 100%);
}

.press-stage::before,
.press-stage::after {
  content: "";
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.press-stage::before {
  left: 0;
  bottom: 0;
  width: 54%;
  height: 7px;
  background: linear-gradient(90deg, var(--cyan) 0 34%, var(--magenta) 34% 67%, var(--yellow) 67% 100%);
}
.press-stage::after {
  top: clamp(92px, 13vh, 142px);
  right: clamp(20px, 4vw, 64px);
  width: clamp(80px, 10vw, 148px);
  height: clamp(80px, 10vw, 148px);
  border-top: 1px solid rgba(255, 255, 255, .5);
  border-right: 1px solid rgba(255, 255, 255, .5);
}

.press-copy {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.press-copy-inner {
  width: var(--rail);
  margin-inline: auto;
  padding-top: 64px;
  pointer-events: auto;
}

h1, h2, p { margin-top: 0; }

h1 {
  max-width: 820px;
  margin-bottom: 10px;
  color: var(--paper-light);
  font-family: var(--display);
  font-size: clamp(58px, 8.6vw, 132px);
  line-height: .85;
  letter-spacing: -.075em;
  text-wrap: balance;
}
h1 span { color: var(--cyan); text-shadow: 7px 0 0 rgba(229, 0, 125, .75), 14px 0 0 rgba(242, 200, 0, .7); }

.hero-location,
.kicker,
.strip-label,
.section-number,
.hours-title {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-location { margin-bottom: clamp(38px, 7vh, 76px); color: var(--paper-muted); }

.scene-beats {
  position: relative;
  width: min(760px, 100%);
  height: clamp(66px, 9vh, 104px);
  margin-bottom: 18px;
}
.scene-beat {
  position: absolute;
  inset: 0 auto auto 0;
  margin: 0;
  color: var(--paper-light);
  font-family: var(--display);
  font-size: clamp(30px, 4.7vw, 66px);
  line-height: .98;
  letter-spacing: -.055em;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms linear, transform 180ms ease-out;
}
.scene-beat.is-active { opacity: 1; transform: translateY(0); }

.hero-summary { max-width: 540px; margin-bottom: 28px; color: #e0dad0; font-size: clamp(16px, 1.5vw, 20px); }
.hero-actions, .visit-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  text-decoration: none;
}
.button-primary { color: var(--paper-light); background: var(--magenta); }
.button-primary:hover { color: var(--ink); background: var(--yellow); }
.button-quiet { color: var(--paper-light); border-color: rgba(255, 255, 255, .42); background: rgba(17, 16, 15, .35); }
.button-quiet:hover { border-color: var(--cyan); background: rgba(17, 16, 15, .8); }
.button-dark { color: var(--paper-light); background: var(--ink); }
.button-dark:hover { color: var(--ink); background: var(--cyan); }
.button-large { min-height: 62px; min-width: min(370px, 100%); padding: 17px 22px; }

.media-label {
  position: absolute;
  z-index: 6;
  top: clamp(98px, 14vh, 150px);
  right: clamp(20px, 4vw, 64px);
  max-width: 230px;
  display: grid;
  gap: 3px;
  padding: 11px 13px;
  color: var(--paper-light);
  border-left: 3px solid var(--yellow);
  background: rgba(17, 16, 15, .76);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.media-label span:last-child { color: var(--paper-muted); }

.motion-panel {
  position: absolute;
  z-index: 7;
  right: clamp(20px, 4vw, 64px);
  bottom: 24px;
  display: grid;
  justify-items: end;
  gap: 8px;
  max-width: min(340px, calc(100% - 40px));
  text-align: right;
}
.motion-panel p { margin: 0; }
.motion-panel [data-motion-status] { padding: 6px 9px; color: var(--paper-light); background: rgba(17, 16, 15, .86); font-size: 13px; }
.motion-panel [data-motion-opt-in] {
  min-height: 44px;
  padding: 8px 13px;
  color: var(--ink);
  border: 0;
  border-radius: 2px;
  background: var(--focus);
  font-weight: 800;
  cursor: pointer;
}
.progress-readout { color: var(--paper-muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.progress-readout [data-progress-value] { display: inline-block; min-width: 24px; color: var(--paper-light); }

.identity-strip {
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid rgba(17, 16, 15, .3);
}
.identity-strip > div { min-height: 148px; padding: 30px clamp(20px, 4vw, 58px); border-right: 1px solid rgba(17, 16, 15, .24); }
.identity-strip > div:last-child { border-right: 0; }
.identity-strip span, .identity-strip strong, .identity-strip a { display: block; }
.strip-label { margin-bottom: 12px; color: #625d55; }
.identity-strip strong, .identity-strip a { font-size: clamp(16px, 1.5vw, 21px); line-height: 1.32; }
.identity-strip a { font-weight: 850; text-underline-offset: 4px; }

.section-rail { width: var(--rail); margin-inline: auto; }
.section-number { color: #766f65; }
.kicker { margin-bottom: 18px; color: var(--magenta); }

.prepare-section {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(390px, 1.22fr);
  column-gap: clamp(36px, 7vw, 100px);
  row-gap: 24px;
  padding-block: clamp(100px, 13vw, 190px);
  color: var(--paper-light);
}
.prepare-section > .section-number { grid-column: 1 / -1; }
.prepare-copy { align-self: center; }
.prepare-copy h2, .visit-lead h2, .closing h2 {
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: .98;
  letter-spacing: -.06em;
  text-wrap: balance;
}
.prepare-copy > p:not(.kicker):not(.fact-caveat) { max-width: 620px; color: var(--paper-muted); }

.detail-list { margin: 42px 0 28px; padding: 0; list-style: none; border-top: 1px solid var(--rule); }
.detail-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--rule);
}
.detail-list li > span { grid-row: 1 / 3; color: var(--cyan); font-family: var(--mono); font-size: 11px; }
.detail-list strong { font-size: 18px; line-height: 1.15; }
.detail-list small { color: var(--paper-muted); }
.fact-caveat { color: #9e978d; font-size: 13px; }

.notes-figure {
  position: relative;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  color: var(--paper-light);
  background: #a6a099;
  border: 1px solid var(--rule);
  cursor: crosshair;
}
.notes-figure::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .55);
}
.notes-figure > img { width: 100%; height: 100%; object-fit: cover; }
.notes-caption {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  color: var(--paper-light);
  background: rgba(17, 16, 15, .85);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.notes-overlay {
  position: absolute;
  z-index: 4;
  inset: 18px 18px 64px;
  padding: clamp(24px, 5vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: rgba(242, 237, 227, .95);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 300ms cubic-bezier(.2, .8, .2, 1);
}
.notes-overlay > p { margin-bottom: 26px; color: #625d55; font-family: var(--mono); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.notes-overlay ol { margin: 0; padding: 0; list-style-position: inside; }
.notes-overlay li { padding: 10px 0; border-top: 1px solid rgba(17, 16, 15, .25); font-family: var(--display); font-size: clamp(34px, 4.5vw, 65px); line-height: 1; letter-spacing: -.05em; }
.notes-overlay li::marker { color: var(--magenta); font-family: var(--mono); font-size: 11px; }
.notes-figure:focus .notes-overlay,
.notes-figure[data-overlay-state="active"] .notes-overlay,
.notes-figure[data-overlay-state="pinned"] .notes-overlay { clip-path: inset(0); }

@media (hover: hover) and (pointer: fine) {
  .notes-figure:hover .notes-overlay { clip-path: inset(0); }
}

.overlay-toggle {
  position: absolute;
  z-index: 7;
  top: 30px;
  right: 30px;
  min-height: 48px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--paper-light);
  border: 1px solid rgba(255, 255, 255, .6);
  background: rgba(17, 16, 15, .86);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.overlay-toggle:hover { color: var(--ink); background: var(--yellow); }

.visit-section { padding-block: clamp(100px, 12vw, 170px); color: var(--ink); background: var(--paper); border-top: 10px solid var(--cyan); }
.visit-grid { display: grid; grid-template-columns: 1fr minmax(370px, .8fr); gap: clamp(48px, 9vw, 130px); align-items: center; }
.visit-lead .section-number { margin-bottom: 56px; }
.visit-lead address { margin: 0 0 34px; font-size: clamp(20px, 2.2vw, 30px); font-style: normal; font-weight: 750; line-height: 1.32; }
.visit-actions .text-link { min-height: 48px; display: inline-flex; align-items: center; padding: 0 10px; color: var(--ink); font-weight: 850; text-underline-offset: 5px; }

.hours-card { position: relative; padding: clamp(30px, 5vw, 58px); color: var(--paper-light); background: var(--ink); }
.hours-card::before { content: ""; position: absolute; top: -10px; left: 22px; right: 22px; height: 10px; background: linear-gradient(90deg, var(--cyan) 0 33.33%, var(--magenta) 33.33% 66.66%, var(--yellow) 66.66%); }
.hours-title { color: var(--yellow); }
.hours-card dl { margin: 28px 0; font-family: var(--mono); font-size: clamp(12px, 1.2vw, 15px); }
.hours-card dl div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--rule); }
.hours-card dd { margin: 0; text-align: right; }
.hours-card > p:last-child { margin-bottom: 0; color: var(--paper-muted); font-size: 13px; }

.crop-corners::before, .crop-corners::after { content: ""; position: absolute; width: 23px; height: 23px; }
.crop-corners::before { top: 17px; left: 17px; border-top: 1px solid var(--paper-muted); border-left: 1px solid var(--paper-muted); }
.crop-corners::after { right: 17px; bottom: 17px; border-right: 1px solid var(--paper-muted); border-bottom: 1px solid var(--paper-muted); }

.closing {
  position: relative;
  min-height: 78svh;
  padding: clamp(90px, 12vw, 180px) max(calc((100vw - 1220px) / 2), clamp(20px, 5vw, 76px));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
}
.closing::after { content: ""; position: absolute; right: -9vw; bottom: -18vw; width: 50vw; height: 50vw; min-width: 420px; min-height: 420px; border: 1px solid var(--rule); border-radius: 50%; box-shadow: -30px 0 0 rgba(0, 190, 213, .16), -60px 0 0 rgba(229, 0, 125, .13), -90px 0 0 rgba(242, 200, 0, .1); pointer-events: none; }
.closing h2 { position: relative; z-index: 1; max-width: 1050px; font-size: clamp(48px, 8vw, 112px); }
.closing .button, .closing .kicker { position: relative; z-index: 1; }

.closing-registration { position: absolute; top: 15%; right: 10%; width: 18vw; height: 18vw; min-width: 160px; min-height: 160px; opacity: .4; }
.closing-registration i { position: absolute; inset: 0; border: 2px solid currentColor; border-radius: 50%; }
.closing-registration i:nth-child(1) { color: var(--cyan); transform: translateX(-13%); }
.closing-registration i:nth-child(2) { color: var(--magenta); }
.closing-registration i:nth-child(3) { color: var(--yellow); transform: translateX(13%); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  padding: 48px max(calc((100vw - 1220px) / 2), clamp(20px, 5vw, 76px));
  color: var(--ink);
  background: var(--yellow);
  font-size: 13px;
}
.site-footer p { margin: 7px 0; max-width: 760px; }
.site-footer a { font-weight: 800; text-underline-offset: 3px; }

/* Static states keep the experience useful without forced motion or video. */
.press-scene[data-motion-state="static"],
.press-scene[data-motion-state="media-error"] { height: auto; min-height: 0; }
.press-scene[data-motion-state="static"] .press-stage,
.press-scene[data-motion-state="media-error"] .press-stage { position: relative; min-height: 760px; height: max(760px, 100svh); }
.press-scene[data-motion-state="static"] .press-video,
.press-scene[data-motion-state="media-error"] .press-video { display: none; }
.press-scene[data-motion-state="static"] .press-copy,
.press-scene[data-motion-state="media-error"] .press-copy { align-items: center; }
.press-scene[data-motion-state="static"] .scene-beats,
.press-scene[data-motion-state="media-error"] .scene-beats { height: auto; display: grid; gap: 3px; }
.press-scene[data-motion-state="static"] .scene-beat,
.press-scene[data-motion-state="media-error"] .scene-beat { position: static; opacity: 1; transform: none; font-size: clamp(24px, 3vw, 42px); }
.press-scene[data-motion-state="static"] .progress-readout,
.press-scene[data-motion-state="media-error"] .progress-readout { display: none; }

.no-js .press-scene { height: auto; min-height: 0; }
.no-js .press-stage { position: relative; height: auto; min-height: 880px; }
.no-js .press-video { display: none; }
.no-js .scene-beats { height: auto; display: grid; gap: 2px; }
.no-js .scene-beat { position: static; opacity: 1; transform: none; font-size: clamp(25px, 3vw, 44px); }
.no-js .motion-panel { display: none; }
.no-js .menu-toggle { display: none; }
.no-js .notes-figure { height: auto; min-height: 0; display: grid; background: var(--paper); }
.no-js .notes-figure > img { min-height: 420px; }
.no-js .notes-overlay { position: static; clip-path: none; color: var(--ink); background: var(--paper); }
.no-js .notes-caption { position: static; order: 3; }
.no-js .overlay-toggle { display: none; }

@media (max-width: 920px) {
  .prepare-section, .visit-grid { grid-template-columns: 1fr; }
  .notes-figure { min-height: min(720px, 80svh); }
  .prepare-copy { max-width: 720px; }
  .identity-strip { grid-template-columns: 1fr 1fr; }
  .identity-strip > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(17, 16, 15, .24); }
  .press-shade { background: linear-gradient(90deg, rgba(17, 16, 15, .94), rgba(17, 16, 15, .55) 75%, rgba(17, 16, 15, .25)); }
  .site-footer { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .site-header { min-height: 68px; padding: 11px 20px; }
  .wordmark { font-size: 13px; }
  .registration-mark { width: 28px; }
  .menu-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 7px 10px;
    color: var(--paper-light);
    border: 1px solid rgba(255, 255, 255, .55);
    background: rgba(17, 16, 15, .6);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
  }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    padding: 10px 20px 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    color: var(--paper-light);
    background: rgba(17, 16, 15, .97);
    border-bottom: 1px solid var(--rule);
  }
  .site-header[data-menu-open="true"] .site-nav { display: flex; }
  .site-nav a { padding: 8px 4px; border-bottom: 1px solid var(--rule); }
  .site-nav .nav-call { margin-top: 10px; padding-inline: 14px; border: 1px solid rgba(255, 255, 255, .55); }
  .press-scene { height: 285svh; min-height: 1450px; }
  .press-stage { min-height: 620px; }
  .press-poster, .press-video { object-position: 63% center; }
  .press-shade { background: linear-gradient(0deg, rgba(17, 16, 15, .97) 0%, rgba(17, 16, 15, .77) 55%, rgba(17, 16, 15, .3)); }
  .press-copy { align-items: flex-end; }
  .press-copy-inner { padding: 100px 0 90px; }
  h1 { max-width: 520px; font-size: clamp(48px, 14vw, 75px); }
  .hero-location { margin-bottom: 26px; }
  .scene-beats { height: 56px; }
  .scene-beat { font-size: clamp(29px, 8vw, 42px); }
  .hero-summary { margin-bottom: 22px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .press-meta { top: 83px; right: 20px; }
  .motion-panel { right: 20px; bottom: 12px; }
  .progress-readout [data-progress-label] { display: none; }
  .identity-strip { grid-template-columns: 1fr; }
  .identity-strip > div { min-height: 0; padding: 24px 20px; border-right: 0; border-bottom: 1px solid rgba(17, 16, 15, .24); }
  .identity-strip > div:last-child { grid-column: auto; border-top: 0; border-bottom: 0; }
  .prepare-section { padding-block: 90px; }
  .prepare-copy h2, .visit-lead h2 { font-size: clamp(38px, 12vw, 58px); }
  .notes-figure { min-height: 610px; }
  .notes-overlay { padding: 28px; }
  .notes-overlay li { font-size: clamp(34px, 11vw, 52px); }
  .notes-caption { flex-direction: column; gap: 2px; }
  .overlay-toggle { top: 28px; right: 28px; max-width: calc(100% - 56px); }
  .visit-section { padding-block: 90px; }
  .visit-lead .section-number { margin-bottom: 38px; }
  .hours-card dl div { align-items: flex-start; flex-direction: column; gap: 0; }
  .hours-card dd { color: var(--paper-muted); text-align: left; }
  .closing { min-height: 720px; }
  .closing h2 { font-size: clamp(48px, 15vw, 74px); }
  .site-footer { padding-block: 38px; }
}

@media (hover: none), (pointer: coarse) {
  .notes-figure .notes-caption { z-index: 6; }
  .notes-figure .overlay-toggle { z-index: 8; }
}

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

@media (forced-colors: active) {
  .press-shade { background: transparent; }
  .button, .overlay-toggle, .site-nav .nav-call { border: 2px solid currentColor; }
}
