:root {
  --bg: #151515;
  --panel: #1b1b1b;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --text: #f0eee9;
  --muted: rgba(240, 238, 233, 0.66);
  --line: rgba(255, 255, 255, 0.08);
  --pill: rgba(255, 255, 255, 0.06);
  --green: #3af27f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --frame-top: 76px;
  --frame-bottom: 78px;
  --media-offset: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.04), transparent 36%),
    linear-gradient(180deg, #1a1a1a 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", sans-serif;
}


a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  width: min(100%, 1680px);
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0 auto;
  padding: var(--frame-top) 14px var(--frame-bottom);
}

main {
  min-height: calc(100vh - var(--frame-top) - var(--frame-bottom));
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: fixed;
  left: 50%;
  width: min(calc(100% - 28px), 1652px);
  transform: translateX(-50%);
  z-index: 10;
}

.topbar {
  top: 12px;
}

.brand {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  text-rendering: optimizeLegibility;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.nav > a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pill);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pill);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.nav-icon-button {
  width: 46px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-wrap {
  position: relative;
}

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 6px;
  z-index: 5;
}

.works-panel {
  left: auto;
  right: 0;
  min-width: 220px;
}

.menu-panel[hidden] {
  display: none;
}

.menu-item {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  text-align: left;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}

.menu-item:hover,
.menu-item:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.menu-item:focus {
  outline: none;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav > a:hover,
.nav-button:hover,
.nav > a:focus-visible,
.nav-button:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.nav > a:focus,
.nav-button:focus,
.footer-meta a:focus {
  outline: none;
}

.hero-card {
  position: sticky;
  top: var(--frame-top);
  overflow: hidden;
  min-height: calc(100vh - var(--frame-top) - var(--frame-bottom));
  height: calc(100vh - var(--frame-top) - var(--frame-bottom));
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-line {
  position: absolute;
  top: 56px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 12%, var(--line) 88%, transparent);
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 16%, transparent 72%, rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  filter: saturate(0.8) brightness(0.98);
  background: transparent;
}

.hero-media video::-webkit-media-controls-panel,
.hero-media video::-webkit-media-controls-enclosure {
  opacity: 1 !important;
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100% - 64px));
  max-height: calc(100% - 72px);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(15, 15, 15, 0.56);
  backdrop-filter: blur(18px);
  overflow: auto;
  z-index: 3;
  transform: translate(-50%, -50%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.hero-copy[hidden] {
  display: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.hero-copy p + p {
  margin-top: 12px;
}

.info-list {
  margin: 14px 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.info-list li + li {
  margin-top: 10px;
}

.info-list a {
  color: rgba(255, 255, 255, 0.82);
  word-break: break-word;
}

.contact-modal {
  width: min(680px, calc(100% - 64px));
}

.work-modal {
  position: fixed;
  z-index: 30;
}

.work-page-shell {
  padding-top: 88px;
  padding-bottom: 32px;
}

.work-topbar {
  top: 14px;
}

.work-page-main {
  min-height: auto;
}

.work-detail-card {
  display: grid;
  gap: 22px;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.work-series-card {
  gap: 18px;
}

.series-switcher {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.series-button {
  border: 0;
  cursor: pointer;
  font: inherit;
  font-style: italic;
  padding: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  transition: color 180ms ease, opacity 180ms ease;
}

.icon-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
}

.series-button:hover,
.series-button:focus-visible,
.series-button.is-active {
  color: rgba(255, 255, 255, 0.96);
}

.icon-pause,
.icon-volume-on {
  display: block;
}

.icon-play,
.icon-volume-off {
  display: none;
}

.icon-toggle.is-paused .icon-pause,
.icon-toggle.is-muted .icon-volume-on {
  display: none;
}

.icon-toggle.is-paused .icon-play,
.icon-toggle.is-muted .icon-volume-off {
  display: block;
}

.work-detail-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
}

.work-detail-media-portrait {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  aspect-ratio: auto;
  min-height: 0;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
}

.work-detail-media-portrait img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(80vh, 1100px);
  object-fit: contain;
}

.work-detail-media[hidden],
.work-detail-meta[hidden] {
  display: none;
}

.work-detail-placeholder {
  background: #0b0b0b;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.work-grid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  background: #000;
}

.installation-ui {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.installation-topbar,
.installation-bottombar {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

.installation-topbar {
  justify-content: space-between;
  padding: 18px 18px 0;
  width: 100%;
}

.installation-volume {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.installation-volume-range {
  width: 188px;
  height: 6px;
  accent-color: rgba(255, 255, 255, 0.95);
}

.installation-bottombar {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  gap: 10px;
  width: min(calc(100% - 36px), 1140px);
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(120, 120, 120, 0.22);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.installation-range {
  flex: 1 1 420px;
  min-width: 280px;
  height: 6px;
  accent-color: rgba(255, 255, 255, 0.92);
}

.installation-icon-button {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  border-radius: 999px;
}

.installation-icon-button:hover,
.installation-icon-button:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.installation-time {
  color: rgba(255, 255, 255, 0.95);
  font-variant-numeric: tabular-nums;
  font-size: 0.96rem;
  min-width: 48px;
}

.player-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.installation-icon-button .icon-play,
.installation-icon-button .icon-volume-off {
  display: none;
}

.installation-icon-button.is-paused .icon-pause,
.installation-icon-button.is-muted .icon-volume-on {
  display: none;
}

.installation-icon-button.is-paused .icon-play,
.installation-icon-button.is-muted .icon-volume-off {
  display: block;
}

.work-detail-media video {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: cover;
}

.work-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-detail-copy {
  width: min(100%, 760px);
}

.work-detail-meta {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.work-detail-meta em {
  font-style: italic;
}

.work-detail-copy-stack {
  display: grid;
  gap: 12px;
}

.work-detail-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.92rem;
  line-height: 1.5;
}

.process-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 38px);
  border-radius: 22px;
  min-height: min(76vh, 820px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
}

.process-card-copy {
  display: grid;
  gap: 14px;
  width: min(100%, 760px);
}

.process-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-card-copy .eyebrow {
  margin: 0;
}

.process-list {
  margin: 2px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.process-list li + li {
  margin-top: 10px;
}

.cyborgism-collage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.cyborgism-stack {
  display: grid;
  gap: 16px;
}

.cyborgism-stack .work-detail-media {
  background: rgba(255, 255, 255, 0.02);
}

.cyborgism-stack .work-detail-media img {
  object-fit: contain;
}

.cyborgism-shot {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.cyborgism-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.02);
}

.cyborgism-shot-primary {
  grid-column: span 7;
  aspect-ratio: 1.15 / 1;
}

.cyborgism-shot-tall {
  grid-column: span 5;
  aspect-ratio: 0.92 / 1;
}

.cyborgism-shot-wide {
  grid-column: span 7;
  aspect-ratio: 1.55 / 1;
}

.cyborgism-shot-square {
  grid-column: span 5;
  aspect-ratio: 1 / 1;
}

.cyborgism-shot-panorama {
  grid-column: 1 / -1;
  aspect-ratio: 2.25 / 1;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  padding: 14px 15px;
  outline: none;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.07);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.contact-send {
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--pill);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.contact-send:hover,
.contact-send:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.contact-direct {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
}

.footer {
  bottom: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.status,
.footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(58, 242, 127, 0.65);
  animation: status-beep 1.6s ease-in-out infinite;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 30px;
  border-radius: 999px;
  color: var(--muted);
  transition: background-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.footer-meta .credit {
  display: inline;
  min-width: auto;
  min-height: auto;
  padding: 0 0 0 8px;
  border-radius: 0;
  background: transparent;
  transition: none;
}

.footer-meta svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credit {
  display: inline;
  min-width: auto;
  min-height: auto;
  padding: 0 0 0 8px;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.credit:hover,
.credit:focus-visible {
  background: transparent;
  transform: none;
}

.footer-meta .credit:hover,
.footer-meta .credit:focus-visible {
  background: transparent;
  transform: none;
}

.bio-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: rotate(45deg);
}

@media (max-width: 720px) {
  :root {
    --frame-top: 96px;
    --frame-bottom: 120px;
  }

  .page-shell {
    width: 100%;
    min-height: 100dvh;
    padding: var(--frame-top) 12px var(--frame-bottom);
  }

  main {
    min-height: calc(100vh - var(--frame-top) - var(--frame-bottom));
  }

  .topbar,
  .footer {
    width: calc(100% - 24px);
    left: 12px;
    transform: none;
  }

  .topbar {
    top: 10px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .brand {
    font-size: 0.98rem;
    letter-spacing: 0.01em;
  }

  .nav {
    margin-left: auto;
  }

  .nav a,
  .nav-button {
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .menu-panel {
    top: calc(100% + 8px);
    min-width: 170px;
    padding: 8px;
    border-radius: 16px;
  }

  .menu-item {
    padding: 9px 14px;
    font-size: 0.92rem;
  }

  .hero-card {
    min-height: calc(100dvh - var(--frame-top) - var(--frame-bottom));
    height: calc(100dvh - var(--frame-top) - var(--frame-bottom));
    border-radius: 18px;
  }

  .hero-line {
    top: 54px;
  }

  .hero-media video,
  .hero-media img {
    object-position: 58% 50%;
  }

  .hero-copy {
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    width: calc(100% - 28px);
    max-height: calc(100% - 28px);
    padding: 20px 20px 22px;
    border-radius: 18px;
    transform: translate(-50%, -50%);
  }

  .hero-copy h1 {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 0.93rem;
    line-height: 1.45;
  }

  .contact-modal {
    width: calc(100% - 28px);
  }

  .work-page-shell {
    padding-top: 86px;
  }

  .works-panel {
    left: auto;
    right: 0;
    min-width: min(220px, calc(100vw - 24px));
  }

  .hero-copy,
  .work-modal {
    overscroll-behavior: contain;
  }

  .work-detail-card {
    gap: 18px;
  }

  .series-switcher {
    gap: 8px;
  }

  .series-button {
    font-size: 0.95rem;
  }

  .process-card {
    min-height: auto;
  }

  .work-detail-media {
    border-radius: 18px;
  }

  .cyborgism-collage {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cyborgism-shot,
  .cyborgism-shot-primary,
  .cyborgism-shot-tall,
  .cyborgism-shot-wide,
  .cyborgism-shot-square,
  .cyborgism-shot-panorama {
    grid-column: auto;
    aspect-ratio: 16 / 11;
  }

  .work-detail-media video {
    height: auto;
    max-height: none;
  }

  .work-detail-media img {
    max-height: none;
  }

  .work-grid {
    gap: 8px;
    padding: 8px;
  }

  .work-grid video {
    border-radius: 12px;
  }

  .installation-topbar {
    padding: 12px 12px 0;
  }

  .installation-volume {
    max-width: calc(100% - 52px);
  }

  .installation-volume-range {
    width: 96px;
  }

  .installation-bottombar {
    width: calc(100% - 24px);
    bottom: 12px;
    gap: 6px;
    padding: 10px 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .installation-time {
    font-size: 0.86rem;
    min-width: 42px;
  }

  .installation-range {
    min-width: 96px;
  }


  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-send,
  .contact-direct {
    text-align: center;
  }

  .footer {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(21, 21, 21, 0), rgba(21, 21, 21, 0.92) 28%, #151515 100%);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.88rem;
  }

  .footer-meta {
    gap: 8px;
  }

  .work-page-shell .footer {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    padding: 0;
    margin-top: 24px;
    background: none;
  }

}

@media (max-width: 560px) {
  :root {
    --frame-top: 92px;
    --frame-bottom: 116px;
  }

  .topbar {
    gap: 8px;
  }

  .brand {
    max-width: 42vw;
    font-size: 0.92rem;
  }

  .nav {
    gap: 8px;
  }

  .nav-button {
    padding: 8px 12px;
    font-size: 0.88rem;
  }

  .nav-icon-button {
    width: 42px;
    height: 38px;
  }

  .menu-panel,
  .works-panel {
    width: min(240px, calc(100vw - 24px));
    min-width: 0;
  }

  .menu-item {
    white-space: normal;
    line-height: 1.3;
  }

  .hero-card {
    min-height: auto;
    height: min(78dvh, 760px);
  }

  .hero-line {
    top: 50px;
  }

  .hero-copy,
  .contact-modal {
    width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    padding: 18px 16px 20px;
  }

  .work-page-shell {
    padding-top: 82px;
    padding-bottom: 20px;
  }

  .work-detail-card,
  .work-series-card,
  .cyborgism-stack {
    gap: 14px;
  }

  .series-switcher {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-detail-media {
    border-radius: 16px;
  }

  .work-detail-placeholder {
    aspect-ratio: 4 / 5;
  }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
  }

  .work-grid video {
    aspect-ratio: auto;
  }

  .work-detail-media-portrait img {
    max-height: min(70vh, 760px);
  }

  .installation-topbar {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }

  .installation-volume {
    width: 100%;
    max-width: none;
    justify-content: space-between;
  }

  .installation-volume-range {
    width: 100%;
  }

  .installation-range {
    min-width: 100%;
    order: 3;
  }

  .contact-field input,
  .contact-field textarea {
    padding: 13px 14px;
  }

  .footer {
    font-size: 0.82rem;
    flex-wrap: nowrap;
  }

  .work-page-shell .footer {
    margin-top: 20px;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@keyframes status-beep {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
    box-shadow: 0 0 0 0 rgba(58, 242, 127, 0.42);
  }

  45% {
    transform: scale(1.18);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(58, 242, 127, 0);
  }
}
