/* Dwellright Coming Soon: executive private invite */
:root {
  --ink: #0a0c0f;
  --ink-elevated: #10141a;
  --fog: #8b939c;
  --paper: #ebe6dc;
  --blue: #0870b8;
  --blue-deep: #065a94;
  --blue-mist: rgba(8, 112, 184, 0.14);
  --gold: #f8b040;
  --gold-deep: #d9922a;
  --gold-mist: rgba(248, 176, 64, 0.1);
  --line: rgba(235, 230, 220, 0.1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 4.25rem;
  --space: clamp(1.25rem, 3vw, 3rem);
}

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

html {
  scroll-behavior: auto;
  background: var(--ink);
  color: var(--paper);
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.05rem);
  line-height: 1.65;
  background: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
  height: 100vh;
}

body.is-loading .site-header,
body.is-loading .progress,
body.is-loading .scroll-hint,
body.is-loading .to-top,
body.is-loading .hero__copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* CURTAIN LOADER: single panel, always painted, exits via clip-path */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--ink);
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

.loader.is-gone {
  display: none !important;
  pointer-events: none !important;
}

.loader__inner {
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  text-align: center;
  padding: 1.5rem;
}

.loader__mark {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
  opacity: 0;
  animation: loader-in 0.7s var(--ease-out) 0.1s forwards;
}

.loader__brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 3.8vw, 1.85rem);
  letter-spacing: 0.36em;
  text-indent: 0.36em;
  line-height: 1;
  opacity: 0;
  animation: loader-in 0.75s var(--ease-out) 0.28s forwards;
}

.loader__dwell { color: #4aa8e0; }
.loader__right { color: var(--gold); }

.loader__loc {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.55);
  opacity: 0;
  animation: loader-in 0.7s var(--ease-out) 0.45s forwards;
}

.loader__track {
  width: min(8rem, 36vw);
  height: 1px;
  margin-top: 0.85rem;
  background: rgba(235, 230, 220, 0.14);
  overflow: hidden;
  opacity: 0;
  animation: loader-in 0.6s var(--ease-out) 0.55s forwards;
}

.loader__fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

@keyframes loader-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__mark,
  .loader__brand,
  .loader__loc,
  .loader__track {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--paper);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  z-index: 100;
  font-weight: 500;
}

.skip-link:focus {
  top: 1rem;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 60;
}

.progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space);
  z-index: 40;
  background: linear-gradient(to bottom, rgba(10, 12, 15, 0.55), transparent);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.45));
}

.header-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.72);
  text-decoration: none;
  transition: color 0.25s;
}

.header-link:hover {
  color: var(--paper);
}

/* HERO: full-bleed residence still, brand as the composition */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2.5rem) var(--space) 6.5rem;
  isolation: isolate;
}

.hero__plane {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--ink);
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.06);
  animation: hero-drift 28s var(--ease-out) infinite alternate;
  will-change: transform;
}

@keyframes hero-drift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(10, 12, 15, 0.92) 0%,
      rgba(10, 12, 15, 0.72) 34%,
      rgba(10, 12, 15, 0.28) 58%,
      rgba(10, 12, 15, 0.45) 100%
    ),
    linear-gradient(180deg, rgba(10, 12, 15, 0.35) 0%, transparent 28%, rgba(10, 12, 15, 0.88) 100%);
}

.hero__copy {
  max-width: min(38rem, 92vw);
  padding-bottom: 0.5rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.68);
}

.brand-lockup {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.6rem, 12vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.brand-lockup__dwell { color: var(--blue); }
.brand-lockup__right { color: var(--gold); }

.lede {
  margin: 1.35rem 0 0;
  max-width: 22ch;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(235, 230, 220, 0.92);
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.cta-row {
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.75rem 1.6rem;
  border-radius: 0;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, letter-spacing 0.3s;
}

.btn--gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--ink);
}

.btn--line {
  background: rgba(10, 12, 15, 0.35);
  color: var(--paper);
  border-color: rgba(248, 176, 64, 0.85);
  backdrop-filter: blur(6px);
}

.btn--line:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  letter-spacing: 0.16em;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.65rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.65rem 1rem;
  transform: translateX(-50%);
  text-decoration: none;
  color: rgba(235, 230, 220, 0.62);
  cursor: pointer;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.3s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-hint:hover,
.scroll-hint:focus-visible {
  color: var(--paper);
  outline: none;
}

.scroll-hint:hover .scroll-hint__mouse,
.scroll-hint:focus-visible .scroll-hint__mouse {
  border-color: rgba(248, 176, 64, 0.7);
}

.scroll-hint:hover .scroll-hint__wheel,
.scroll-hint:focus-visible .scroll-hint__wheel {
  background: var(--gold);
}

.scroll-hint.is-away {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(0.55rem);
}

.scroll-hint__mouse {
  position: relative;
  width: 1.35rem;
  height: 2.15rem;
  border: 1.5px solid rgba(235, 230, 220, 0.45);
  border-radius: 999px;
  background: rgba(10, 12, 15, 0.2);
  transition: border-color 0.3s ease;
}

.scroll-hint__wheel {
  position: absolute;
  left: 50%;
  top: 0.38rem;
  width: 0.18rem;
  height: 0.42rem;
  margin-left: -0.09rem;
  border-radius: 999px;
  background: var(--gold);
  animation: scroll-wheel 1.7s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.scroll-hint__label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  55% {
    opacity: 1;
  }
  100% {
    transform: translateY(0.72rem);
    opacity: 0;
  }
}

@keyframes scroll-hint-breathe {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(0.28rem);
  }
}

body.is-ready .scroll-hint:not(.is-away) {
  animation: scroll-hint-breathe 2.4s ease-in-out infinite;
}

@media (max-width: 720px) {
  .hero {
    align-items: end;
    padding-bottom: 5.75rem;
  }

  .hero__media {
    object-position: 70% center;
  }

  .hero__veil {
    background:
      linear-gradient(
        180deg,
        rgba(10, 12, 15, 0.45) 0%,
        rgba(10, 12, 15, 0.55) 40%,
        rgba(10, 12, 15, 0.92) 100%
      );
  }

  .lede {
    max-width: 28ch;
  }

  .scroll-hint {
    bottom: 1.1rem;
  }

  .scroll-hint__mouse {
    width: 1.2rem;
    height: 1.95rem;
  }
}

/* CINEMA */
.cinema {
  position: relative;
  height: 380vh;
}

.cinema__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.cinema__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cinema__loader {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-content: center;
  gap: 0.75rem;
  background: rgba(10, 12, 15, 0.88);
  transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.cinema__loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cinema__loader-label {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fog);
  text-align: center;
}

.cinema__loader-track {
  width: min(14rem, 55vw);
  height: 1px;
  background: var(--line);
}

.cinema__loader-track span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.cinema__story {
  position: absolute;
  left: var(--space);
  right: var(--space);
  bottom: clamp(2rem, 6vh, 3.25rem);
  z-index: 2;
  pointer-events: none;
}

.cinema__line {
  margin: 0;
  max-width: min(16ch, 78vw);
  padding-left: 1rem;
  border-left: 1px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--paper);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.5);
}

.cinema__reduced {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
  max-width: 24rem;
}

.cinema__reduced img {
  margin: 0 auto 1rem;
  width: min(100%, 20rem);
  height: auto;
}

.cinema.is-reduced {
  height: auto;
}

.cinema.is-reduced .cinema__pin {
  position: relative;
  min-height: 70svh;
  padding: 4rem var(--space);
}

.cinema.is-reduced .cinema__canvas,
.cinema.is-reduced .cinema__loader {
  display: none;
}

.cinema.is-reduced .cinema__reduced {
  display: block;
}

/* COMING SOON: executive dolly zoom */
.soon {
  position: relative;
  height: 240vh;
  background: var(--ink);
}

.soon__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.soon__media {
  position: absolute;
  inset: 0;
  transform-origin: 58% 45%;
  will-change: transform;
}

.soon__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.soon__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 15, 0.45) 0%, rgba(10, 12, 15, 0.55) 45%, rgba(10, 12, 15, 0.82) 100%),
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(10, 12, 15, 0.15), rgba(10, 12, 15, 0.7));
}

.soon__copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: 1.5rem;
  will-change: transform, opacity;
}

.soon__rule {
  display: block;
  width: 4.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
}

.soon__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 4.75rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--paper);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.soon__sub {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.55);
}

.soon.is-static .soon__media {
  transform: scale(1.18);
}

.soon.is-static .soon__copy {
  opacity: 1;
  transform: none;
}

.notice {
  padding: clamp(5rem, 14vh, 9rem) var(--space);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(60% 50% at 50% 0%, var(--blue-mist), transparent 60%),
    var(--ink);
}

.notice__inner {
  max-width: 28rem;
  margin: 0 auto;
  text-align: center;
}







.notice h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
}

.notice__support {
  margin: 0 0 2rem;
  color: var(--fog);
}







.reach {
  margin-top: 2.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.reach__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.reach__kicker {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.55);
}

.reach__rule {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reach__number {
  margin: 0 0 1.35rem;
}

.reach__tel {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--paper);
  text-decoration: none;
  transition: color 0.25s;
}

.reach__tel:hover,
.reach__tel:focus-visible {
  color: var(--gold);
  outline: none;
}

.reach__channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reach__channels li {
  margin: 0;
}

.reach__channels li + li {
  border-left: 1px solid var(--line);
}

.reach__channel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 4.25rem;
  padding: 0.85rem 0.75rem;
  text-decoration: none;
  color: rgba(235, 230, 220, 0.78);
  transition: background 0.3s, color 0.3s;
}

.reach__channel:hover,
.reach__channel:focus-visible {
  background: rgba(248, 176, 64, 0.06);
  color: var(--paper);
  outline: none;
}

.reach__channel:hover .reach__icon,
.reach__channel:focus-visible .reach__icon {
  color: var(--gold);
  border-color: rgba(248, 176, 64, 0.55);
}

.reach__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(235, 230, 220, 0.22);
  color: rgba(235, 230, 220, 0.7);
  transition: color 0.3s, border-color 0.3s;
}

.reach__channel-copy {
  display: grid;
  gap: 0.15rem;
  text-align: left;
}

.reach__channel-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235, 230, 220, 0.5);
}

.reach__channel-action {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: inherit;
}

@media (max-width: 520px) {
  .reach__channels {
    grid-template-columns: 1fr;
  }

  .reach__channels li + li {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

.to-top {
  position: fixed;
  right: var(--space);
  bottom: 5.75rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: rgba(235, 230, 220, 0.45);
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.35rem);
  pointer-events: none;
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    color 0.25s;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover,
.to-top:focus-visible {
  color: var(--gold);
  outline: none;
}

.to-top__mark {
  width: 1px;
  height: 1.35rem;
  background: linear-gradient(180deg, currentColor, transparent);
  position: relative;
}

.to-top__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.4rem;
  height: 0.4rem;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.to-top__label {
  font-size: 0.52rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .to-top {
    transition: opacity 0.2s;
    transform: none;
  }
}

@media (max-width: 720px) {
  .to-top {
    bottom: 6.5rem;
  }
}

.form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fog);
}

.field input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: var(--ink-elevated);
  color: var(--paper);
  font-family: inherit;
  font-size: 1rem;
}

.field input:focus {
  border-color: var(--blue);
  outline: none;
  box-shadow: 0 0 0 3px var(--blue-mist);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: 0.82rem;
  color: var(--fog);
}

.consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: 0.15rem;
  accent-color: var(--blue);
}

.hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.form__status {
  min-height: 1.4em;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gold);
  text-align: center;
}

.form__status.is-error {
  color: #e07070;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem var(--space) 2.25rem;
  padding-right: calc(var(--space) + 3rem);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--fog);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__brand img {
  width: 1.75rem;
  height: 1.75rem;
}

.site-footer__brand p {
  margin: 0;
  color: var(--paper);
  letter-spacing: 0.04em;
}

.site-footer__meta {
  display: grid;
  gap: 0.35rem;
  text-align: right;
}

.site-footer__reach a {
  color: rgba(235, 230, 220, 0.78);
}

.site-footer__reach a:hover {
  color: var(--gold);
}

@media (max-width: 720px) {
  .site-footer__meta {
    text-align: left;
    width: 100%;
  }
}

.site-footer a {
  color: var(--fog);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

/* Privacy page shared */
.legal {
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2rem) var(--space) 4rem;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.legal .meta {
  color: var(--fog);
  margin: 0 0 2rem;
  font-size: 0.9rem;
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
  color: var(--gold);
}

.legal p,
.legal li {
  color: var(--fog);
}

.legal ul {
  padding-left: 1.2rem;
}

.legal code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.85em;
  color: rgba(235, 230, 220, 0.78);
  word-break: break-all;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-hint__wheel {
    animation: none;
    top: 50%;
    margin-top: -0.21rem;
    opacity: 0.95;
  }

  body.is-ready .scroll-hint:not(.is-away) {
    animation: none;
  }

  .hero__media {
    animation: none;
    transform: scale(1.04);
  }
}
