@font-face {
  font-family: Scto;
  src: url("venm/fonts/Scto-Grotesk-A-Medium.woff") format("woff");
  font-weight: 400 500;
  font-display: swap;
}
:root {
  font-family: Scto, Arial, sans-serif;
  color: #3c2028;
  background: white;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible {
  outline: 2px solid #d91734;
  outline-offset: 6px;
}
::selection {
  background: #df1735;
  color: white;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 10;
  background: #d91734;
  color: white;
  padding: 12px 18px;
  clip-path: inset(50%);
}
.skip-link:focus {
  clip-path: none;
}
.home-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 40px;
  position: relative;
  z-index: 1;
  font-size: 13px;
}
.home-logo {
  display: flex;
}
.home-logo img {
  display: block;
  border-radius: 5px;
}
.home-address {
  margin-left: auto;
  color: #b51a34;
  font-size: 12px;
  display: flex;
  gap: 12px;
  padding: 10px 0;
}
.home-address:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.home-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px 28px;
  gap: 12px;
}
.home-art {
  margin: 0;
  perspective: 1100px;
  max-width: 100%;
  --rotate-x: 0deg;
  --rotate-y: 0deg;
}
.home-art img {
  display: block;
  width: auto;
  height: clamp(340px, 63svh, 680px);
  max-width: 100%;
  object-fit: contain;
  transform: rotateX(var(--rotate-x)) rotateY(var(--rotate-y));
  transition: transform 0.35s ease-out;
  mix-blend-mode: multiply;
}
.home-links {
  align-self: center;
  margin: 4px 20px 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: calc(100% - 40px);
  padding: 7px;
  border: 1px solid #f5a7b4;
  border-radius: 13px;
  box-shadow: 0 0 26px #f51b4020;
  background: white;
}
.home-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 168px;
  min-height: 52px;
  border: 1px solid #ed2947;
  border-radius: 7px;
  color: #c21834;
  font-size: 15px;
  padding: 12px 18px;
  transition:
    background 0.18s,
    color 0.18s,
    box-shadow 0.18s,
    transform 0.18s;
}
.home-links a:hover {
  transform: translateY(-2px);
}
.home-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.home-links a > span {
  margin-left: 12px;
  font-size: 16px;
}
.home-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 40px 25px;
  color: #916f78;
  font-size: 11px;
}
.home-footer > span:first-child {
  color: #bd2440;
}
@media (max-width: 600px) {
  .home-header {
    padding: 22px 22px;
    font-size: 11px;
    gap: 10px;
  }
  .home-logo img {
    width: 30px;
    height: 30px;
  }
  .home-address {
    font-size: 11px;
  }
  .home-main {
    padding: 0 20px 28px;
    gap: 20px;
  }
  .home-art img {
    height: clamp(300px, 58svh, 560px);
  }
  .home-links {
    gap: 7px;
    width: min(100%, 360px);
  }
  .home-links a {
    min-width: 0;
    flex: 1;
    padding: 12px 10px;
    gap: 8px;
    font-size: 14px;
  }
  .home-links a > span {
    margin-left: 2px;
  }
  .home-footer {
    padding: 18px 22px 24px;
    font-size: 10px;
  }
}
@media (max-height: 650px) and (min-width: 601px) {
  .home-art img {
    height: 340px;
  }
  .home-header {
    padding-top: 18px;
    padding-bottom: 12px;
  }
  .home-footer {
    padding-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    transition: none !important;
  }
  .home-art img {
    transform: none !important;
  }
  .home-links a:hover {
    transform: none;
  }
}
.home-logo img {
  border-radius: 8px;
}
.home-footer a {
  color: #b51a34;
}
.home-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 380px) {
  .home-header {
    padding-left: 16px;
    padding-right: 16px;
    gap: 8px;
  }
  .home-header > span {
    max-width: 85px;
    line-height: 1.4;
  }
  .home-address {
    font-size: 10px;
    gap: 7px;
  }
}

/* Top navigation and an expanded ornamental composition. */
.home-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 16px 40px;
  gap: 20px;
}
.home-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-header .home-links {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  margin: 0;
  max-width: none;
}
.home-address {
  grid-column: 3;
  justify-self: end;
  margin-left: 0;
}
.home-main {
  padding: 0 24px;
  gap: 0;
}
.home-art {
  width: min(100%, 1120px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: clip;
}
.home-art img {
  width: 100%;
  height: auto;
  max-height: min(63svh, 700px);
  max-width: 100%;
  object-fit: contain;
}
.home-footer {
  padding-top: 12px;
  padding-bottom: 18px;
}
@media (max-width: 900px) {
  .home-header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 12px 22px 8px;
    gap: 12px 16px;
  }
  .home-header .home-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(100%, 360px);
  }
  .home-brand {
    grid-column: 1;
    grid-row: 2;
    gap: 8px;
    font-size: 11px;
  }
  .home-address {
    grid-column: 2;
    grid-row: 2;
    font-size: 11px;
  }
  .home-main {
    padding: 0 12px;
  }
  .home-art img {
    height: auto;
  }
}
@media (max-width: 380px) {
  .home-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .home-brand {
    gap: 6px;
    font-size: 10px;
  }
  .home-address {
    font-size: 10px;
    gap: 5px;
  }
}

.home-art picture {
  display: block;
  width: 100%;
}
@media (max-width: 700px) {
  .home-art {
    width: min(100%, 430px);
  }
  .home-art img {
    max-height: min(63svh, 620px);
  }
}

/* Reserve room for the two-row header and footer on compact phones. */
@media (max-width: 900px) {
  .home-art img {
    max-height: min(63svh, calc(100svh - 190px), 620px);
  }
}
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .home-header {
    padding-top: 8px;
    padding-bottom: 4px;
    row-gap: 5px;
  }
  .home-header .home-links {
    padding: 5px;
  }
  .home-links a {
    min-height: 44px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .home-footer {
    padding-top: 6px;
    padding-bottom: 8px;
  }
  .home-art img {
    max-height: calc(100svh - 154px);
  }
}

/* The original artwork stays intact beneath a temporary red-mist reveal. */
.home-art {
  display: block;
  overflow: visible;
  width: min(100%, 94.5svh, 1120px);
}
.ironwork-stage {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  color: inherit;
}
.home-art .ironwork-still,
.home-art .ironwork-still img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transform: none;
  transition: none;
  mix-blend-mode: normal;
}
.ironwork-reveal {
  pointer-events: none;
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-art.is-playing .ironwork-reveal {
  display: block;
}
@media (max-width: 700px) and (orientation: portrait) {
  .home-art {
    width: min(100%, 42svh, calc((100svh - 190px) * 0.666667), 430px);
  }
  .ironwork-stage {
    aspect-ratio: 2 / 3;
  }
}
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .home-art {
    width: min(100%, calc((100svh - 154px) * 1.5));
  }
}
