@font-face {
  font-family: "Anka/Coder Condensed";
  src: url("assets/fonts/AnkaCoderCondensed-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Anka/Coder Condensed";
  src: url("assets/fonts/AnkaCoderCondensed-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #05070a;
  --panel: rgba(12, 15, 18, 0.72);
  --line: rgba(211, 222, 231, 0.16);
  --text: #eef3f5;
  --muted: #94a4ab;
  --soft: #d0dae0;
  --red: #ff2f3f;
  --cyan: #4ce7ff;
  --lime: #c9ff3a;
  --steel: #162127;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 47, 63, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(76, 231, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(76, 231, 255, 0.12), transparent 30%),
    var(--bg);
  background-size: 72px 72px, 72px 72px, auto, auto;
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(5, 7, 10, 0.2), rgba(5, 7, 10, 0.92) 58%);
}

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

button,
input {
  font: inherit;
}

#telemetryCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: 100vw;
  z-index: -1;
  opacity: 0.34;
}

.auth-pending body > :not(.auth-gate) {
  visibility: hidden;
  pointer-events: none;
}

.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(90deg, rgba(76, 231, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(76, 231, 255, 0.035) 1px, transparent 1px),
    rgba(5, 7, 10, 0.96);
  background-size: 72px 72px;
}

.auth-panel {
  display: grid;
  width: min(440px, 100%);
  gap: 16px;
  border: 1px solid rgba(76, 231, 255, 0.24);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 34px);
  background: rgba(5, 7, 10, 0.82);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
}

.auth-kicker,
.auth-panel label span,
.auth-error {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auth-kicker {
  color: var(--cyan);
}

.auth-panel h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  line-height: 0.9;
}

.auth-panel p {
  margin: 0;
  color: var(--soft);
  line-height: 1.45;
}

.auth-panel label {
  display: grid;
  gap: 8px;
}

.auth-panel label span {
  color: var(--muted);
}

.auth-panel input[type="password"] {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(211, 222, 231, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(238, 243, 245, 0.04);
  color: var(--text);
}

.auth-remember {
  grid-template-columns: auto 1fr;
  align-items: center;
}

.auth-remember input {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
}

.auth-error {
  min-height: 1rem;
  color: var(--cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.74);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(238, 243, 245, 0.34);
  border-left: 4px solid var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  text-transform: uppercase;
  font-size: 0.82rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.69rem;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 34px);
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

nav a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-color: var(--cyan);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-height: 56vh;
  padding: clamp(24px, 5vw, 72px);
  gap: clamp(22px, 4vw, 58px);
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.12) brightness(0.62);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.52) 52%, rgba(5, 7, 10, 0.86)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.045) 1px, transparent 1px, transparent 7px);
}

.hero-copy {
  max-width: 760px;
  padding-bottom: clamp(36px, 8vh, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about h2,
.site-footer h2 {
  font-size: clamp(1.6rem, 3vw, 3.1rem);
  line-height: 1;
}

.hero-copy p:not(.eyebrow),
.about p,
.intake p {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.58;
}

.hero-actions,
.intake-output,
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button,
.filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(238, 243, 245, 0.035);
  color: var(--text);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
}

.primary {
  border-color: rgba(255, 47, 63, 0.58);
  background: var(--red);
  color: #fff;
}

.ghost:hover,
.filter:hover,
.filter.active {
  border-color: rgba(76, 231, 255, 0.72);
  color: var(--cyan);
}

.telemetry-panel {
  align-self: center;
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 1px;
  max-width: 420px;
  border: 1px solid var(--line);
  background: var(--line);
}

.telemetry-panel div,
.readout {
  padding: 18px;
  background: rgba(5, 7, 10, 0.72);
  backdrop-filter: blur(14px);
}

.telemetry-panel span,
.readout span,
.meta span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.telemetry-panel strong,
.readout strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1;
}

.ticker {
  display: flex;
  gap: 1px;
  max-width: 100vw;
  overflow-x: auto;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.ticker span {
  flex: 0 0 auto;
  padding: 14px 22px;
  background: rgba(5, 7, 10, 0.86);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about,
.portfolio,
.intake,
.studio-hero,
.site-footer {
  padding: clamp(52px, 8vw, 118px) clamp(18px, 4vw, 56px);
}

.studio-hero {
  min-height: 58vh;
  display: grid;
  align-content: end;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(5, 7, 10, 0.32), rgba(5, 7, 10, 0.92)),
    linear-gradient(90deg, rgba(255, 47, 63, 0.18) 0 2px, transparent 2px);
}

.studio-hero p:not(.section-kicker) {
  max-width: 680px;
  color: var(--soft);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.58;
}

.about {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(26px, 5vw, 86px);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 30px;
}

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

.media-card {
  position: relative;
  grid-column: span 4;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--steel);
  cursor: zoom-in;
  isolation: isolate;
}

.media-card.wide {
  grid-column: span 8;
}

.media-card.tall {
  grid-column: span 3;
  min-height: 520px;
}

.media-card video,
.media-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 550ms ease, filter 550ms ease;
}

.media-card:hover img,
.media-card:hover video {
  transform: scale(1.035);
  filter: saturate(0.84) contrast(1.1);
}

.media-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.06), rgba(5, 7, 10, 0.84)),
    linear-gradient(90deg, rgba(255, 47, 63, 0.34) 0 2px, transparent 2px);
}

.meta {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 16px;
}

.meta strong {
  display: block;
  margin-top: 4px;
  text-transform: uppercase;
}

.portfolio-page .meta {
  grid-template-columns: 1fr;
}

.portfolio-page .meta strong {
  margin-top: 0;
  font-size: 0.78rem;
}

.meta em {
  align-self: end;
  color: var(--lime);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.intake {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr) minmax(220px, 0.45fr);
  gap: 18px;
  align-items: stretch;
  border-block: 1px solid var(--line);
}

.dropzone {
  display: grid;
  min-height: 260px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed rgba(76, 231, 255, 0.45);
  border-radius: var(--radius);
  background: rgba(76, 231, 255, 0.035);
  cursor: pointer;
}

.dropzone.dragging {
  border-color: var(--lime);
  background: rgba(201, 255, 58, 0.06);
}

.dropzone input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.drop-target {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(238, 243, 245, 0.28);
  color: var(--cyan);
  font-size: 2.4rem;
  line-height: 1;
}

.dropzone strong {
  text-transform: uppercase;
}

.dropzone small {
  color: var(--muted);
}

.intake-output {
  align-content: start;
}

.readout {
  flex: 1 1 130px;
  border: 1px solid var(--line);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 28px;
}

address {
  display: grid;
  gap: 10px;
  align-content: center;
  color: var(--soft);
  font-style: normal;
  text-align: right;
}

address a:hover {
  color: var(--cyan);
}

.portfolio-page .deck-section {
  width: min(1280px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 150px) 0;
}

.portfolio-page .canva-hero {
  width: min(1280px, calc(100vw - 36px));
  min-height: min(760px, calc(100vh - 92px));
  margin: 18px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.portfolio-page .hero-copy {
  min-width: 0;
  max-width: min(680px, 100%);
  padding: clamp(34px, 7vw, 80px) 0;
}

.portfolio-page .hero-media::after {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.92), rgba(5, 7, 10, 0.32) 58%, rgba(5, 7, 10, 0.86)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 8px);
}

.portfolio-page .about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 6vw, 82px);
  border-top: 0;
}

.about-copy {
  align-self: end;
}

.about-copy h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 5.6vw, 6rem);
}

.portfolio-intro h2 {
  max-width: 420px;
  font-size: clamp(2.2rem, 4.4vw, 4.8rem);
}

.about-media {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 14px;
  align-items: end;
}

.about-media img,
.portfolio-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-shot,
.equipment-shot,
.portfolio-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--steel);
}

.portrait-shot {
  aspect-ratio: 3 / 4;
}

.equipment-shot {
  aspect-ratio: 4 / 3;
  transform: translateY(42px);
}

.service-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 34px;
}

.service-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 12px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid > div {
  min-height: 190px;
  padding: 18px;
  background: rgba(5, 7, 10, 0.74);
}

.service-grid h3 {
  margin: 0 0 18px;
  font-size: 1rem;
  text-transform: uppercase;
}

.service-grid p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.portfolio-page .portfolio {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  border-top: 1px solid var(--line);
}

.portfolio-intro {
  position: sticky;
  top: 112px;
}

.portfolio-intro p:last-child {
  max-width: 390px;
  color: var(--soft);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.55;
}

.portfolio-board {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
}

.portfolio-frame {
  position: relative;
  margin: 0;
}

.portfolio-frame.river {
  grid-column: 1 / span 3;
  aspect-ratio: 3 / 4.6;
}

.portfolio-frame.overhead {
  grid-column: 4 / span 5;
  aspect-ratio: 16 / 10;
  margin-top: 62px;
}

.portfolio-frame.ruins-wide {
  grid-column: 3 / span 6;
  aspect-ratio: 16 / 8.5;
}

.portfolio-frame.ruins-detail {
  grid-column: 1 / span 3;
  aspect-ratio: 4 / 3;
  margin-top: -58px;
}

.portfolio-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.86));
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portfolio-page .site-footer {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px);
  gap: clamp(28px, 6vw, 82px);
  border-top: 1px solid var(--line);
}

.contact-title h2 {
  font-size: clamp(2.2rem, 5vw, 5.5rem);
}

.contact-card {
  display: grid;
  gap: 8px;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(5, 7, 10, 0.62);
  text-align: left;
}

.contact-card span {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card span:first-child {
  margin-top: 0;
}

.contact-card a,
.contact-card strong {
  color: var(--text);
  font-size: 1.05rem;
}

dialog {
  width: min(1120px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: #05070a;
  color: var(--text);
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

#closeLightbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.82);
  color: var(--text);
  cursor: pointer;
}

#lightboxMedia img,
#lightboxMedia video {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #020304;
}

#lightboxCaption {
  margin: 0;
  padding: 14px 16px 18px;
  color: var(--soft);
}

@media (max-width: 960px) {
  .hero,
  .about,
  .intake,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 500px;
  }

  .telemetry-panel {
    align-self: end;
  }

  .section-heading,
  .site-footer {
    align-items: start;
  }

  address {
    text-align: left;
  }

  .media-card,
  .media-card.wide,
  .media-card.tall {
    grid-column: span 6;
    min-height: 360px;
  }

  .portfolio-page .about,
  .portfolio-page .portfolio,
  .portfolio-page .site-footer {
    grid-template-columns: 1fr;
  }

  .portfolio-intro {
    position: static;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    min-height: 470px;
    padding-top: 36px;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5.5rem);
  }

  .telemetry-panel {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .media-card,
  .media-card.wide,
  .media-card.tall {
    grid-column: 1 / -1;
    min-height: 430px;
  }

  .portfolio-page .deck-section {
    width: min(100vw - 24px, 1180px);
    padding: 60px 0;
  }

  .portfolio-page .canva-hero {
    width: min(100vw - 24px, 1180px);
    min-height: 560px;
  }

  .about-media,
  .portfolio-board,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .equipment-shot {
    transform: none;
  }

  .portfolio-frame.river,
  .portfolio-frame.overhead,
  .portfolio-frame.ruins-wide,
  .portfolio-frame.ruins-detail {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .portfolio-frame.river {
    aspect-ratio: 3 / 4;
  }

  .portfolio-frame.overhead,
  .portfolio-frame.ruins-detail {
    aspect-ratio: 4 / 3;
  }
}

/* Owner upload studio */
.upload-studio-page {
  font-family: "Anka/Coder Condensed", "Anca Coder", "Courier New", ui-monospace, monospace;
}

.upload-studio-page .primary {
  border-color: rgba(76, 231, 255, 0.74);
  background: var(--cyan);
  color: #041014;
}

.studio-shell {
  width: min(1280px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(34px, 6vw, 76px) 0 clamp(70px, 9vw, 120px);
}

.upload-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  gap: clamp(22px, 5vw, 72px);
  align-items: start;
  padding-bottom: clamp(48px, 7vw, 86px);
  border-bottom: 1px solid rgba(211, 222, 231, 0.14);
}

.studio-intro h1 {
  margin: 0 0 18px;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.84;
  text-transform: uppercase;
}

.studio-intro p:last-child {
  max-width: 520px;
  color: var(--soft);
  line-height: 1.55;
}

.collection-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-column: 1 / -1;
  gap: 12px;
  align-items: end;
}

.collection-form label {
  display: grid;
  gap: 8px;
}

.collection-form span,
.studio-status,
.empty-note {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-form select,
.collection-form input,
.collection-form textarea {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(211, 222, 231, 0.18);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(5, 7, 10, 0.68);
  color: var(--text);
  font: inherit;
}

.collection-form textarea {
  min-height: 86px;
  padding: 12px;
  resize: vertical;
}

.upload-caption-field {
  grid-column: 1 / -1;
}

.owner-dropzone {
  display: grid;
  min-height: 320px;
  place-items: center;
  align-content: center;
  gap: 10px;
  border: 1px dashed rgba(76, 231, 255, 0.52);
  border-radius: 8px;
  background: rgba(76, 231, 255, 0.04);
  cursor: pointer;
}

.owner-dropzone.dragging {
  border-color: var(--cyan);
  background: rgba(76, 231, 255, 0.09);
}

.owner-dropzone input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.owner-dropzone strong {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  text-transform: uppercase;
}

.owner-dropzone small {
  color: var(--muted);
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: start;
}

.upload-queue {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.queue-item,
.studio-media-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(211, 222, 231, 0.14);
  border-radius: 8px;
  background: rgba(8, 12, 15, 0.72);
}

.queue-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 12px;
  padding: 10px;
}

.queue-item img,
.queue-item video {
  width: 116px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
}

.queue-item strong,
.studio-media-card strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.queue-item span,
.studio-media-card span {
  display: block;
  margin-top: 6px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.studio-caption {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.35;
}

.queue-item button,
.studio-media-card button,
.site-media-label {
  justify-self: start;
  margin-top: 8px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.site-media-card {
  border-color: rgba(76, 231, 255, 0.2);
}

.site-media-label {
  display: inline-block;
  margin: 0 12px 12px;
  color: var(--cyan);
  font-style: normal;
  cursor: default;
}

.studio-library {
  padding-top: clamp(48px, 7vw, 86px);
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.collection-filter {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid rgba(76, 231, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(5, 7, 10, 0.54);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.collection-filter.active,
.collection-filter:hover {
  border-color: rgba(76, 231, 255, 0.78);
  color: var(--cyan);
}

.studio-status {
  margin-bottom: 16px;
}

.studio-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.studio-media-card {
  min-height: 280px;
  cursor: zoom-in;
}

.studio-media-card img,
.studio-media-card video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.studio-media-card > div {
  padding: 12px;
}

.studio-media-card button,
.site-media-label {
  margin: 0 12px 12px;
}

#studioLightbox {
  width: min(1120px, calc(100vw - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #05070a;
  color: var(--text);
}

#studioLightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
}

#closeStudioLightbox {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 7, 10, 0.82);
  color: var(--text);
  cursor: pointer;
}

#studioLightboxMedia img,
#studioLightboxMedia video {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

#studioLightboxCaption {
  margin: 0;
  padding: 14px 16px 18px;
  color: var(--soft);
}

@media (max-width: 920px) {
  .upload-panel,
  .collection-form {
    grid-template-columns: 1fr;
  }

  .upload-queue,
  .studio-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .studio-shell {
    width: min(100vw - 24px, 1280px);
  }

  .upload-queue,
  .studio-media-grid {
    grid-template-columns: 1fr;
  }

  .queue-item {
    grid-template-columns: 96px 1fr;
  }

  .queue-item img,
  .queue-item video {
    width: 96px;
    height: 78px;
  }
}

/* Canva portfolio rebuild */
.portfolio-page {
  font-family: "Anka/Coder Condensed", "Anca Coder", "Anka/Coder", "Courier New", ui-monospace, monospace;
  background:
    linear-gradient(90deg, rgba(255, 47, 63, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(76, 231, 255, 0.04) 1px, transparent 1px),
    #05070a;
  background-size: 84px 84px;
}

.portfolio-page .site-header {
  padding: 18px clamp(18px, 5vw, 72px);
}

.portfolio-page .brand-mark {
  border-left-color: var(--cyan);
}

.portfolio-page nav {
  gap: clamp(18px, 4vw, 62px);
}

.portfolio-page .deck-page {
  position: relative;
  display: grid;
  width: min(1280px, calc(100vw - 36px));
  min-height: calc(100vh - 79px);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 96px) 0;
  border-bottom: 1px solid rgba(211, 222, 231, 0.12);
}

.portfolio-page h1,
.portfolio-page h2,
.portfolio-page h3,
.portfolio-page p {
  letter-spacing: 0;
}

.home-page {
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.68fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
}

.home-copy {
  z-index: 1;
}

.home-copy h1 {
  margin: 0 0 24px;
  max-width: 9ch;
  font-size: clamp(4.8rem, 12vw, 12.4rem);
  line-height: 0.78;
  text-transform: none;
}

.home-copy h1 span {
  display: block;
}

.home-copy p {
  margin: 0 0 18px;
  max-width: 460px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 2rem);
  line-height: 1.35;
}

.home-copy .hero-subtitle {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.45vw, 1.42rem);
}

.work-link {
  display: inline-block;
  margin-top: clamp(28px, 6vw, 82px);
  border-bottom: 2px solid var(--cyan);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-portrait,
.river-layout figure,
.connect-visual {
  margin: 0;
}

.home-portrait {
  justify-self: end;
  width: min(420px, 100%);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.portfolio-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page {
  grid-template-columns: minmax(0, 0.94fr) minmax(340px, 1.06fr);
  grid-template-areas:
    "copy images"
    "services services";
  gap: clamp(24px, 5vw, 72px);
  align-content: center;
}

.about-copy {
  grid-area: copy;
  align-self: center;
}

.about-copy h2,
.portfolio-copy h2,
.contact-copy h2 {
  margin: 0 0 22px;
  max-width: 720px;
  font-size: clamp(2.6rem, 7vw, 7.2rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.about-copy p,
.portfolio-copy p:last-child {
  max-width: 560px;
  color: var(--soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
}

.about-images {
  grid-area: images;
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 16px;
  align-items: end;
}

.about-images img,
.river-layout figure,
.connect-visual img {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--steel);
}

.pad-shot {
  aspect-ratio: 3 / 4;
}

.trail-shot {
  aspect-ratio: 4 / 3.35;
  transform: translateY(58px);
}

.services {
  grid-area: services;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 72px);
  background: transparent;
}

.services article {
  min-height: 0;
  padding: 0;
  border-right: 0;
  background: transparent;
}

.services p,
.portfolio-copy > p:first-child,
.contact-copy > p,
.connect-visual p {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.services h3 {
  margin: 0 0 16px;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.services span {
  display: block;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.portfolio-page-section {
  grid-template-columns: minmax(250px, 420px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.portfolio-copy {
  align-self: center;
}

.portfolio-copy h2 {
  font-size: clamp(2.9rem, 6vw, 6.4rem);
}

.river-layout {
  display: grid;
  min-width: 0;
  width: min(100%, 760px);
  justify-self: end;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  align-items: start;
}

.river-layout figure {
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

.river-view {
  grid-column: 1 / span 3;
  aspect-ratio: 3 / 4.6;
}

.estate-view {
  grid-column: 4 / span 5;
  aspect-ratio: 16 / 9.6;
}

.ruins-view {
  position: relative;
  grid-column: 1 / span 8;
  aspect-ratio: 16 / 8.8;
}

.stone-view {
  grid-column: 1 / span 5;
  aspect-ratio: 16 / 9;
}

.stone-view video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ruins-view figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 44px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.86));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-page {
  grid-template-columns: minmax(280px, 0.62fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 7vw, 104px);
  align-items: center;
}

.connect-visual {
  display: grid;
  gap: 14px;
  align-content: center;
}

.connect-visual .qr-code {
  width: min(310px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-color: rgba(76, 231, 255, 0.42);
}

.connect-visual .contact-orbit {
  aspect-ratio: 16 / 9;
  opacity: 0.72;
}

.scan-caption {
  color: var(--soft);
}

.contact-copy {
  align-self: center;
}

.contact-copy h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
}

.contact-copy > p {
  font-size: clamp(1.7rem, 4.8vw, 5.2rem);
  line-height: 0.86;
  color: var(--text);
}

.contact-copy address {
  display: grid;
  gap: 8px;
  max-width: 460px;
  color: var(--text);
  font-style: normal;
  text-align: left;
}

.contact-copy address span {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-copy address span:first-child {
  margin-top: 0;
}

.contact-copy address a,
.contact-copy address strong {
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
}

@media (max-width: 920px) {
  .portfolio-page .deck-page,
  .home-page,
  .about-page,
  .portfolio-page-section,
  .contact-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-page {
    grid-template-areas:
      "copy"
      "images"
      "services";
  }

  .home-portrait {
    justify-self: start;
  }

  .trail-shot {
    transform: none;
  }

  .services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .portfolio-page .site-header {
    gap: 12px;
  }

  .portfolio-page nav {
    gap: 12px;
    font-size: 0.66rem;
  }

  .portfolio-page .deck-page {
    width: min(100vw - 24px, 1280px);
    padding: 52px 0;
  }

  .home-copy h1 {
    font-size: clamp(3.8rem, 20vw, 5.4rem);
  }

  .home-copy p {
    font-size: 1rem;
  }

  .about-copy h2,
  .portfolio-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .about-images,
  .river-layout,
  .services {
    grid-template-columns: 1fr;
  }

  .river-view,
  .estate-view,
  .ruins-view,
  .stone-view {
    grid-column: 1 / -1;
  }

  .river-view {
    aspect-ratio: 3 / 4;
  }

  .estate-view,
  .ruins-view,
  .stone-view {
    aspect-ratio: 4 / 3;
  }

  .services article,
  .services article:nth-child(2) {
    border-right: 0;
    border-bottom: 0;
  }

  .services article:last-child {
    border-bottom: 0;
  }
}

/* Current portfolio refinements */
.portfolio-page {
  --red: var(--cyan);
  background:
    linear-gradient(90deg, rgba(76, 231, 255, 0.038) 1px, transparent 1px),
    linear-gradient(0deg, rgba(76, 231, 255, 0.04) 1px, transparent 1px),
    #05070a;
  background-size: 84px 84px;
}

.home-copy h1 {
  font-size: clamp(3.9rem, 9vw, 9.4rem);
}

.about-copy h2,
.portfolio-copy h2,
.contact-copy h2 {
  font-size: clamp(1.9rem, 4.2vw, 4.2rem);
  line-height: 0.96;
}

.services h3 {
  font-size: clamp(1.05rem, 2vw, 1.65rem);
}

.portfolio-page-section {
  grid-template-columns: 1fr;
  align-content: center;
}

.portfolio-copy {
  max-width: 760px;
  align-self: end;
}

.portfolio-copy h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.45rem);
}

.work-browser {
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.portfolio-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.portfolio-tab {
  flex: 0 0 auto;
  min-height: 36px;
  border: 1px solid rgba(76, 231, 255, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(5, 7, 10, 0.52);
  color: var(--soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-tab.active,
.portfolio-tab:hover {
  border-color: rgba(76, 231, 255, 0.78);
  color: var(--cyan);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.work-item {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(211, 222, 231, 0.12);
  border-radius: 8px;
  background: rgba(12, 17, 20, 0.66);
  aspect-ratio: 4 / 3;
}

.work-item.wide {
  grid-column: span 8;
  aspect-ratio: 16 / 9;
}

.work-item.tall {
  grid-column: span 4;
  aspect-ratio: 3 / 4;
}

.work-item.video-card {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.work-item.work-clump {
  grid-column: span 8;
  aspect-ratio: auto;
  padding: 10px;
}

.clump-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.clump-media-grid img,
.clump-media-grid video {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
}

.work-clump figcaption {
  position: static;
  padding: 12px 2px 2px;
  background: none;
}

.work-item.empty-slot {
  display: grid;
  min-height: 220px;
  place-items: end start;
  border-style: dashed;
}

.work-item[hidden] {
  display: none;
}

.work-item img,
.work-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 44px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.86));
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.work-item.empty-slot figcaption {
  position: static;
  padding: 14px;
  background: none;
  color: var(--muted);
}

.contact-page {
  grid-template-columns: minmax(320px, 0.74fr) minmax(260px, 0.52fr);
}

.contact-copy {
  order: 1;
}

.connect-visual {
  order: 2;
}

.contact-copy > p {
  font-size: clamp(2.6rem, 6vw, 6.7rem);
  color: var(--text);
}

.contact-copy h2 {
  font-size: clamp(1.45rem, 2.7vw, 2.8rem);
}

.qr-inline {
  display: flex;
  align-items: end;
  gap: 12px;
  margin-top: 24px;
}

.qr-inline .qr-code {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(76, 231, 255, 0.42);
  border-radius: 8px;
  object-fit: contain;
}

.qr-inline span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.owner-studio-link {
  display: inline-block;
  margin-top: 24px;
  border-bottom: 1px solid rgba(76, 231, 255, 0.45);
  color: rgba(211, 222, 231, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.owner-studio-link:hover {
  color: var(--cyan);
}

.connect-visual .contact-orbit {
  aspect-ratio: 16 / 9;
}

@media (max-width: 920px) {
  .portfolio-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .work-item,
  .work-item.tall {
    grid-column: span 3;
  }

  .work-item.wide,
  .work-item.video-card,
  .work-item.work-clump {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .home-copy h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .about-copy h2,
  .portfolio-copy h2,
  .contact-copy h2 {
    font-size: clamp(1.55rem, 8vw, 2.55rem);
  }

  .contact-copy > p {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .portfolio-tabs {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .work-item,
  .work-item.wide,
  .work-item.tall,
  .work-item.video-card {
    grid-column: 1 / -1;
  }

  .qr-inline .qr-code {
    width: 96px;
    height: 96px;
  }
}

/* Phone polish */
@media (max-width: 640px) {
  .portfolio-page .site-header {
    padding: 14px 14px 10px;
    align-items: start;
  }

  .portfolio-page .brand strong {
    font-size: 0.78rem;
  }

  .portfolio-page .brand small {
    font-size: 0.62rem;
  }

  .portfolio-page nav {
    gap: 10px;
    justify-content: end;
    text-align: right;
    font-size: 0.62rem;
  }

  .portfolio-page .deck-page {
    width: calc(100vw - 28px);
    min-height: auto;
    padding: 38px 0;
    gap: 22px;
  }

  .home-page,
  .about-page,
  .portfolio-page-section,
  .contact-page {
    align-content: start;
  }

  .home-copy h1 {
    max-width: 8ch;
    margin-bottom: 18px;
    font-size: 4.05rem;
    line-height: 0.84;
  }

  .home-copy p,
  .home-copy .hero-subtitle,
  .about-copy p,
  .portfolio-copy p:last-child {
    max-width: 100%;
    white-space: normal;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .work-link {
    margin-top: 26px;
  }

  .home-portrait {
    width: min(310px, 86vw);
    justify-self: center;
  }

  .home-portrait img {
    object-position: center top;
  }

  .about-copy h2,
  .portfolio-copy h2,
  .contact-copy h2 {
    margin-bottom: 14px;
    font-size: 2rem;
    line-height: 1;
  }

  .about-images {
    gap: 12px;
    align-items: start;
  }

  .portfolio-page .about-images img {
    height: auto;
    object-fit: contain;
  }

  .pad-shot,
  .trail-shot {
    aspect-ratio: auto;
    transform: none;
  }

  .services {
    gap: 22px;
  }

  .services h3 {
    margin-bottom: 10px;
    font-size: 1.26rem;
    line-height: 1.05;
  }

  .portfolio-copy {
    max-width: 100%;
  }

  .work-browser {
    gap: 14px;
  }

  .portfolio-tabs {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding: 0 14px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .portfolio-tabs::-webkit-scrollbar {
    display: none;
  }

  .portfolio-tab {
    min-height: 32px;
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .portfolio-gallery {
    gap: 16px;
  }

  .work-item,
  .work-item.wide,
  .work-item.tall,
  .work-item.video-card,
  .work-item.work-clump {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .work-item.video-card,
  .work-item.wide {
    aspect-ratio: 16 / 10;
  }

  .work-item.work-clump {
    aspect-ratio: auto;
    padding: 8px;
  }

  .clump-media-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .work-item figcaption {
    position: static;
    padding: 10px 12px;
    background: rgba(5, 7, 10, 0.92);
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .contact-page {
    gap: 24px;
  }

  .contact-copy > p {
    margin-bottom: 12px;
    font-size: 2.65rem;
    line-height: 0.92;
  }

  .contact-copy address {
    gap: 5px;
  }

  .contact-copy address a,
  .contact-copy address strong {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .qr-inline {
    align-items: center;
    margin-top: 18px;
  }

  .qr-inline .qr-code {
    width: 78px;
    height: 78px;
  }

  .owner-studio-link {
    margin-top: 18px;
    font-size: 0.64rem;
  }

  .connect-visual .contact-orbit {
    aspect-ratio: 16 / 10;
  }

  .studio-shell {
    width: calc(100vw - 28px);
    padding: 28px 0 64px;
  }

  .studio-intro h1 {
    font-size: 2.7rem;
    line-height: 0.94;
  }

  .collection-form {
    gap: 14px;
  }

  .owner-dropzone {
    min-height: 210px;
  }

  .owner-dropzone strong {
    font-size: 1.3rem;
  }

  .studio-actions .button {
    flex: 1 1 100%;
  }

  .collection-filters {
    flex-wrap: nowrap;
    margin-right: -14px;
    padding: 0 14px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .collection-filters::-webkit-scrollbar {
    display: none;
  }
}
