:root {
  --bg: #090c10;
  --bg-deep: #06080b;
  --text: #f2ebdf;
  --text-soft: rgba(242, 235, 223, 0.72);
  --text-faint: rgba(242, 235, 223, 0.48);
  --line: rgba(242, 235, 223, 0.12);
  --bronze: #a96d49;
  --slate: #77818c;
  --pointer-x: 0px;
  --pointer-y: 0px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 18%, rgba(169, 109, 73, 0.1), transparent 20%),
    radial-gradient(circle at 26% 14%, rgba(119, 129, 140, 0.08), transparent 16%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Azeret Mono", monospace;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(169, 109, 73, 0.16);
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-180%);
  border: 1px solid rgba(242, 235, 223, 0.22);
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  background: rgba(9, 12, 16, 0.92);
  color: var(--text);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  border-color: rgba(242, 235, 223, 0.62);
  outline: none;
}

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

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
}

.page-shell__grain,
.page-shell__glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.page-shell__grain {
  z-index: -1;
  opacity: 0.08;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.page-shell__glow {
  z-index: -2;
  background:
    radial-gradient(circle at calc(70% + var(--pointer-x) * 0.025) calc(22% + var(--pointer-y) * 0.018), rgba(169, 109, 73, 0.14), transparent 18%),
    radial-gradient(circle at calc(30% - var(--pointer-x) * 0.02) calc(18% - var(--pointer-y) * 0.018), rgba(119, 129, 140, 0.1), transparent 16%);
  filter: blur(22px);
}

.masthead,
.hero,
.band {
  width: min(100%, 1520px);
  margin: 0 auto;
  padding-left: clamp(1rem, 2vw, 1.75rem);
  padding-right: clamp(1rem, 2vw, 1.75rem);
}

.masthead {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 2rem;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 3;
  animation: revealIn 0.56s ease-out both;
}

.masthead::after {
  content: "";
  position: absolute;
  left: clamp(1rem, 2vw, 1.75rem);
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: 0;
  border-bottom: 1px solid var(--line);
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  width: fit-content;
  margin-left: -0.34rem;
  border-radius: 999px;
  padding: 0.32rem 0.48rem 0.32rem 0.34rem;
  color: inherit;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.masthead__brand:hover {
  background: rgba(242, 235, 223, 0.035);
}

.masthead__brand:focus-visible {
  outline: none;
  background: rgba(242, 235, 223, 0.055);
  box-shadow:
    0 0 0 1px rgba(242, 235, 223, 0.42),
    0 0 0 5px rgba(169, 109, 73, 0.13);
}

.masthead__brand img {
  width: 2rem;
  height: 2rem;
  filter: drop-shadow(0 0 16px rgba(169, 109, 73, 0.14));
}

.masthead__line,
.eyebrow,
.band__items span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.masthead__wordmark {
  font-family: "Instrument Serif", serif;
  font-size: 1.52rem;
  line-height: 1;
  letter-spacing: -0.045em;
  color: rgba(242, 235, 223, 0.92);
}

.masthead__line {
  margin: 0;
  justify-self: end;
  text-align: right;
}

.hero {
  position: relative;
  min-height: calc(100svh - 4.6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(26rem, 1.1fr);
  gap: clamp(0.9rem, 2.3vw, 2.4rem);
  align-items: stretch;
  padding-top: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: clamp(1.8rem, 4vw, 2.6rem);
  isolation: isolate;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 0.95rem;
  width: min(100%, 38.5rem);
  padding: 1rem 0 2rem;
  isolation: isolate;
}

.hero__art-layer {
  position: absolute;
  pointer-events: none;
}

.hero__art-layer--atmosphere {
  inset: 1.5rem -4% 0 26%;
  z-index: 1;
  opacity: 0.14;
  background:
    radial-gradient(circle at 18% 28%, rgba(116, 128, 141, 0.14), transparent 20%),
    radial-gradient(circle at 76% 18%, rgba(169, 109, 73, 0.09), transparent 18%),
    linear-gradient(90deg, rgba(9, 12, 16, 0.82), rgba(9, 12, 16, 0.14) 38%, rgba(9, 12, 16, 0.02) 56%, rgba(9, 12, 16, 0.18)),
    linear-gradient(180deg, rgba(242, 235, 223, 0.03), transparent 22%, rgba(9, 12, 16, 0.12) 78%, rgba(9, 12, 16, 0.28));
  mix-blend-mode: screen;
  filter: blur(2px) saturate(0.88) contrast(1.04);
}

.hero__art-layer--glint {
  right: clamp(1rem, 2vw, 1.75rem);
  bottom: clamp(2.2rem, 6vw, 5rem);
  z-index: 2;
  width: min(32vw, 34rem);
  height: min(24vw, 21rem);
  opacity: 0.28;
  background:
    radial-gradient(ellipse at 72% 70%, rgba(169, 109, 73, 0.34), transparent 38%),
    linear-gradient(124deg, transparent 30%, rgba(255, 239, 213, 0.08) 48%, transparent 62%);
  mix-blend-mode: screen;
  filter: blur(18px);
  transform: translate3d(calc(var(--pointer-x) * -0.006), calc(var(--pointer-y) * -0.004), 0);
}

.hero__art-layer--floor {
  left: 22%;
  right: -3%;
  bottom: clamp(1.5rem, 4vw, 3rem);
  z-index: 1;
  height: clamp(7rem, 13vw, 12rem);
  opacity: 0.18;
  background:
    linear-gradient(180deg, rgba(9, 12, 16, 0) 0%, rgba(242, 235, 223, 0.028) 42%, rgba(9, 12, 16, 0.12) 100%),
    linear-gradient(104deg, rgba(255, 239, 213, 0.06), transparent 42%, rgba(169, 109, 73, 0.06) 78%, transparent 100%);
  mix-blend-mode: screen;
  filter: blur(10px);
}

.eyebrow {
  margin: 0;
}

.hero__wordmark {
  display: block;
  width: min(100%, 45rem);
  height: auto;
  overflow: visible;
  transform-origin: left center;
  transform-box: fill-box;
}

.hero__trace {
  position: absolute;
  top: -1.5rem;
  right: -7.5rem;
  z-index: -1;
  width: clamp(18rem, 34vw, 30rem);
  height: auto;
  opacity: 0.45;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--pointer-x) * -0.014), calc(var(--pointer-y) * -0.012), 0);
  filter: drop-shadow(0 0 30px rgba(169, 109, 73, 0.08));
}

.hero__trace path,
.hero__trace circle {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero__trace path {
  stroke: rgba(242, 235, 223, 0.13);
  stroke-width: 1;
}

.hero__trace path:nth-child(1),
.hero__trace path:nth-child(2),
.hero__trace path:nth-child(3) {
  stroke-dasharray: 9 14;
  animation: traceDrift 20s linear infinite;
}

.hero__trace path:nth-child(2) {
  stroke: rgba(169, 109, 73, 0.26);
  animation-duration: 26s;
}

.hero__trace path:nth-child(3) {
  stroke: rgba(119, 129, 140, 0.22);
  animation-duration: 32s;
}

.hero__trace path:nth-child(4),
.hero__trace path:nth-child(5) {
  stroke: rgba(242, 235, 223, 0.08);
}

.hero__trace circle {
  fill: rgba(242, 235, 223, 0.88);
  stroke: rgba(169, 109, 73, 0.36);
  stroke-width: 6;
  animation: tracePulse 7s ease-in-out infinite;
}

.hero__survey {
  position: absolute;
  top: -1.2rem;
  right: -9rem;
  z-index: -1;
  width: clamp(24rem, 40vw, 35rem);
  height: auto;
  opacity: 0.22;
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--pointer-x) * -0.01), calc(var(--pointer-y) * -0.008), 0);
}

.hero__survey path,
.hero__survey circle {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.hero__survey-arc {
  stroke: rgba(242, 235, 223, 0.09);
  stroke-width: 1;
  stroke-dasharray: 4 12;
  animation: traceDrift 34s linear infinite;
}

.hero__survey-arc--cool {
  stroke: rgba(119, 129, 140, 0.14);
  animation-duration: 44s;
}

.hero__survey-axis {
  stroke: rgba(242, 235, 223, 0.08);
  stroke-width: 1;
}

.hero__survey-lock {
  stroke: rgba(242, 235, 223, 0.12);
  stroke-width: 1.2;
}

.hero__survey-tick {
  stroke: rgba(242, 235, 223, 0.24);
  stroke-width: 1.1;
  stroke-linecap: round;
}

.hero__wordmark-text {
  fill: var(--text);
  font-family: "Instrument Serif", serif;
  font-size: 176px;
  letter-spacing: -0.06em;
}

.hero__wordmark-shimmer {
  fill: url("#wordmarkShimmer");
  font-family: "Instrument Serif", serif;
  font-size: 176px;
  letter-spacing: -0.06em;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__descriptor {
  margin: 0;
  max-width: 30rem;
  font-size: clamp(1.04rem, 1.55vw, 1.2rem);
  line-height: 1.72;
  color: rgba(242, 235, 223, 0.95);
  text-wrap: balance;
}

.hero__support {
  margin: 0;
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 1.92;
  color: var(--text-soft);
  text-wrap: pretty;
}

.hero__signal {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  width: fit-content;
  margin-top: 0.15rem;
  padding: 0.9rem 1rem 0 0;
  border-top: 1px solid rgba(242, 235, 223, 0.12);
  color: var(--text-faint);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.hero__signal::after {
  content: "";
  position: absolute;
  inset: -0.15rem -0.75rem -0.4rem -0.55rem;
  z-index: -1;
  opacity: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 52%, rgba(169, 109, 73, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(242, 235, 223, 0.03), rgba(242, 235, 223, 0.01));
  filter: blur(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
  transform: scale(0.98);
}

.hero__signal::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(169, 109, 73, 0.82);
  box-shadow: 0 0 0 0 rgba(169, 109, 73, 0.22);
  animation: signalPulse 4.2s ease-in-out infinite;
}

.hero__signal span + span {
  position: relative;
  padding-left: 1rem;
}

.hero__signal span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.4rem;
  border-top: 1px solid rgba(242, 235, 223, 0.16);
  transform: translateY(-50%);
}

.hero__signal-value {
  color: rgba(242, 235, 223, 0.92);
}

.hero__signal-vector {
  color: rgba(169, 109, 73, 0.92);
}

.hero__datum {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 0.15rem;
  color: rgba(242, 235, 223, 0.42);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__datum span + span {
  position: relative;
  padding-left: 1rem;
}

.hero__datum span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.42rem;
  border-top: 1px solid rgba(242, 235, 223, 0.12);
  transform: translateY(-50%);
}

:root[data-field-state="near"] .hero__signal {
  border-top-color: rgba(169, 109, 73, 0.28);
  color: rgba(242, 235, 223, 0.62);
}

:root[data-field-state="near"] .hero__signal::after {
  opacity: 0.58;
  transform: scale(1);
}

:root[data-field-state="near"] .hero__signal::before {
  box-shadow: 0 0 0 0.45rem rgba(169, 109, 73, 0.08);
}

:root[data-field-state="near"] .hero__signal-value,
:root[data-field-state="near"] .hero__signal-vector {
  color: rgba(242, 235, 223, 0.96);
}

:root[data-field-state="near"] .hero__trace circle {
  fill: rgba(242, 235, 223, 0.98);
  stroke: rgba(169, 109, 73, 0.52);
}

:root[data-field-state="near"] .hero__survey-lock {
  stroke: rgba(169, 109, 73, 0.22);
}

:root[data-field-state="near"] .hero__survey-tick {
  stroke: rgba(242, 235, 223, 0.34);
}

:root[data-field-state="lock"] .hero__signal {
  border-top-color: rgba(242, 235, 223, 0.34);
  color: rgba(242, 235, 223, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, 0.04);
}

:root[data-field-state="lock"] .hero__signal::after {
  opacity: 1;
  transform: scale(1.02);
  background:
    radial-gradient(circle at 8% 52%, rgba(255, 244, 225, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(242, 235, 223, 0.08), rgba(169, 109, 73, 0.04) 58%, rgba(242, 235, 223, 0.03));
}

:root[data-field-state="lock"] .hero__signal::before {
  background: rgba(255, 246, 231, 0.98);
  box-shadow:
    0 0 0 0.55rem rgba(242, 235, 223, 0.07),
    0 0 1.15rem rgba(242, 235, 223, 0.2);
  animation-duration: 2.4s;
}

:root[data-field-state="lock"] .hero__signal-value {
  color: rgba(255, 248, 236, 0.98);
}

:root[data-field-state="lock"] .hero__signal-vector {
  color: rgba(255, 224, 191, 0.98);
}

:root[data-field-state="lock"] .hero__trace circle {
  fill: rgba(255, 248, 236, 1);
  stroke: rgba(255, 232, 204, 0.62);
  animation-duration: 3.6s;
}

:root[data-field-state="lock"] .hero__survey-lock {
  stroke: rgba(255, 241, 222, 0.34);
}

:root[data-field-state="lock"] .hero__survey-tick {
  stroke: rgba(255, 248, 236, 0.52);
}

:root[data-field-state="lock"] .hero__datum {
  color: rgba(242, 235, 223, 0.58);
}

:root[data-field-state="lock"] .hero__art-layer--glint {
  opacity: 0.36;
}

.hero__media {
  position: relative;
  z-index: 1;
  min-height: 44rem;
  margin-top: -0.8rem;
  margin-right: calc(clamp(1rem, 2vw, 1.75rem) * -1);
  margin-bottom: -1rem;
  margin-left: -2.4rem;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.992);
  animation: mediaReveal 0.78s 0.14s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 80% 76%, rgba(169, 109, 73, 0.12), transparent 27%),
    linear-gradient(90deg, rgba(9, 12, 16, 0.96) 0%, rgba(9, 12, 16, 0.68) 12%, rgba(9, 12, 16, 0.22) 26%, rgba(9, 12, 16, 0.06) 39%, rgba(9, 12, 16, 0.12) 100%),
    linear-gradient(180deg, rgba(9, 12, 16, 0.05), rgba(9, 12, 16, 0.32) 82%, rgba(9, 12, 16, 0.46));
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 2;
  background: linear-gradient(
    112deg,
    transparent 0%,
    transparent 43%,
    rgba(255, 248, 236, 0.055) 50%,
    transparent 57%,
    transparent 100%
  );
  transform: translate3d(-34%, 0, 0);
  animation: imageSweep 12s 1.8s ease-in-out infinite;
  pointer-events: none;
}

.hero__media picture,
.hero__image {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__image {
  object-fit: cover;
  object-position: 74% center;
  transform: translate3d(calc(var(--pointer-x) * 0.018), calc(var(--pointer-y) * 0.012), 0);
  filter: saturate(0.92) contrast(1.1);
}

.band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1.5rem 2rem;
  align-items: start;
  padding-top: 1.3rem;
  padding-bottom: 1.6rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.band::before {
  content: "";
  position: absolute;
  inset: 0 0 0 52%;
  z-index: -1;
  opacity: 0.11;
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(9, 12, 16, 0.28)),
    url("./assets/tavemo-detail-v2.png") right center / min(34rem, 42vw) auto no-repeat;
  mix-blend-mode: screen;
}

.band__intro p:last-child,
.band__items p {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 0.84rem;
  text-wrap: pretty;
}

.band__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.band__items div {
  position: relative;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  transition:
    transform 0.38s ease,
    border-color 0.38s ease;
}

.band__items div::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: clamp(4rem, 42%, 6.5rem);
  border-top: 1px solid rgba(169, 109, 73, 0.7);
  opacity: 0;
  transform: translate3d(-0.8rem, 0, 0);
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.band__items div:hover {
  transform: translate3d(0, -0.22rem, 0);
  border-color: rgba(242, 235, 223, 0.18);
}

.band__items div:hover::after {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: revealIn 0.62s cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

.reveal:nth-child(1) {
  animation-delay: 0.08s;
}

.reveal:nth-child(2) {
  animation-delay: 0.16s;
}

.reveal:nth-child(3) {
  animation-delay: 0.24s;
}

.reveal:nth-child(4) {
  animation-delay: 0.32s;
}

.reveal-band {
  opacity: 1;
  transform: none;
}

.js .reveal-band {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.2, 0.72, 0.22, 1);
}

.js .reveal-band.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes revealIn {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mediaReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes imageSweep {
  0%,
  48%,
  100% {
    opacity: 0;
    transform: translate3d(-34%, 0, 0);
  }
  58% {
    opacity: 1;
  }
  72% {
    opacity: 0;
    transform: translate3d(34%, 0, 0);
  }
}

@keyframes traceDrift {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes tracePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.18);
    opacity: 1;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(169, 109, 73, 0.24);
    opacity: 0.76;
  }
  40% {
    box-shadow: 0 0 0 0.45rem rgba(169, 109, 73, 0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .masthead,
  .hero,
  .band {
    grid-template-columns: 1fr;
  }

  .masthead__line {
    justify-self: start;
    text-align: left;
  }

  .hero {
    min-height: calc(100svh - 6.6rem);
    grid-template-rows: auto minmax(18rem, 1fr);
    gap: 0.7rem;
    align-content: start;
    padding-top: 1.15rem;
    padding-bottom: 0.9rem;
    overflow: hidden;
    overflow: clip;
  }

  .hero__content {
    order: 1;
    gap: 0.72rem;
    width: 100%;
    padding-bottom: 0;
  }

  .hero__trace {
    top: 1.2rem;
    right: -4rem;
    width: clamp(15rem, 44vw, 21rem);
    opacity: 0.34;
  }

  .hero__survey {
    top: 1.4rem;
    right: -4.8rem;
    width: clamp(18rem, 48vw, 24rem);
    opacity: 0.16;
  }

  .hero__media {
    order: 2;
    min-height: clamp(18rem, 43svh, 24rem);
    margin-top: 0.25rem;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    border: 1px solid rgba(242, 235, 223, 0.08);
    border-radius: 1.2rem;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  }

  .hero__art-layer--atmosphere {
    inset: 4rem -12% 26% 10%;
    opacity: 0.1;
  }

  .hero__art-layer--glint {
    width: 16rem;
    height: 13rem;
    right: -2rem;
    bottom: 4rem;
    opacity: 0.22;
  }

  .hero__art-layer--floor {
    left: 8%;
    right: -6%;
    bottom: 1.2rem;
    height: 5.5rem;
    opacity: 0.12;
  }

  .hero__signal {
    gap: 0.45rem 0.85rem;
  }

  .hero__datum {
    gap: 0.45rem 0.85rem;
  }

  .hero__media::before {
    background:
      radial-gradient(circle at 62% 56%, rgba(169, 109, 73, 0.1), transparent 32%),
      linear-gradient(180deg, rgba(9, 12, 16, 0.02) 0%, rgba(9, 12, 16, 0.14) 62%, rgba(9, 12, 16, 0.3) 100%),
      linear-gradient(90deg, rgba(9, 12, 16, 0.18), rgba(9, 12, 16, 0.02) 24%, rgba(9, 12, 16, 0.04));
  }

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

  .band::before {
    inset: 42% 0 0 0;
    opacity: 0.08;
    background:
      linear-gradient(180deg, rgba(9, 12, 16, 0), rgba(9, 12, 16, 0.68)),
      url("./assets/tavemo-detail-v2.png") center bottom / min(34rem, 112%) auto no-repeat;
  }
}

@media (max-width: 640px) {
  .masthead,
  .hero,
  .band {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .masthead {
    gap: 0.55rem;
    padding-top: 0.65rem;
    padding-bottom: 0.8rem;
  }

  .masthead__brand {
    margin-left: -0.2rem;
  }

  .masthead__line {
    display: none;
  }

  .masthead__line,
  .eyebrow,
  .band__items span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .hero__wordmark-text {
    font-size: 112px;
  }

  .hero__wordmark-shimmer {
    font-size: 112px;
  }

  .hero {
    min-height: auto;
    gap: 0.5rem;
    padding-top: 0.8rem;
    padding-bottom: 0.6rem;
    grid-template-rows: auto auto;
  }

  .hero__content {
    gap: 0.56rem;
    padding-top: 0.1rem;
    padding-bottom: 0;
  }

  .hero__trace {
    top: 4rem;
    right: -1.25rem;
    width: 11.25rem;
    opacity: 0.12;
  }

  .hero__survey {
    display: none;
  }

  .hero__descriptor {
    max-width: 17rem;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero__support,
  .band__intro p:last-child,
  .band__items p {
    font-size: 0.82rem;
    line-height: 1.76;
  }

  .hero__support {
    max-width: 18.5rem;
  }

  .hero__signal {
    gap: 0.38rem 0.72rem;
    margin-top: 0.1rem;
    padding-top: 0.72rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero__signal span + span,
  .hero__datum span + span {
    padding-left: 0.82rem;
  }

  .hero__datum {
    gap: 0.38rem 0.72rem;
    font-size: 0.56rem;
    letter-spacing: 0.15em;
  }

  .hero__art-layer--glint,
  .hero__art-layer--floor {
    display: none;
  }

  .hero__art-layer--atmosphere {
    inset: 7rem -12% 27% 14%;
    opacity: 0.08;
    filter: blur(8px);
  }

  .hero__media {
    min-height: clamp(15rem, 36svh, 18.5rem);
    margin-top: 0.2rem;
    border-radius: 1rem;
  }

  .hero__media::before {
    background:
      radial-gradient(circle at 64% 58%, rgba(169, 109, 73, 0.08), transparent 30%),
      linear-gradient(180deg, rgba(9, 12, 16, 0.1) 0%, rgba(9, 12, 16, 0.26) 88%, rgba(9, 12, 16, 0.42) 100%),
      linear-gradient(90deg, rgba(9, 12, 16, 0.2), rgba(9, 12, 16, 0.03) 28%, rgba(9, 12, 16, 0.08));
  }

  .hero__media::after {
    inset: -12%;
    opacity: 0.7;
  }

  .hero__image {
    object-position: 62% center;
  }

  .band {
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1.1rem;
  }

  .band__intro p:last-child,
  .band__items p {
    margin-top: 0.58rem;
  }

  .band__items {
    gap: 0.8rem;
  }

  .band__items div {
    padding-top: 0.72rem;
  }

  .band::before {
    inset: 46% 0 0 0;
    opacity: 0.06;
    background:
      linear-gradient(180deg, rgba(9, 12, 16, 0), rgba(9, 12, 16, 0.72)),
      url("./assets/tavemo-detail-v2.png") center bottom / 17rem auto no-repeat;
  }
}

@media (hover: none), (pointer: coarse) {
  .page-shell__glow,
  .hero__trace,
  .hero__survey,
  .hero__art-layer--glint,
  .hero__image {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }

  .hero__image {
    transform: none !important;
  }

  .masthead,
  .reveal,
  .reveal-band,
  .js .reveal-band,
  .hero__media {
    opacity: 1 !important;
    transform: none !important;
  }

  .reveal-band {
    transition: none !important;
  }

  .hero__media::after,
  .hero__art-layer,
  .hero__wordmark-shimmer,
  .hero__trace,
  .hero__survey {
    display: none !important;
  }
}
