:root {
  --ink: #0d0d0d;
  --ink-soft: #171717;
  --paper: #f1efe9;
  --paper-bright: #faf9f5;
  --line: rgba(13, 13, 13, 0.16);
  --line-light: rgba(255, 255, 255, 0.18);
  --accent: #8655f6;
  --accent-dark: #6d34d7;
  --green: #84f7a0;
  --white: #fff;
  --muted: #a5a5a2;
  --radius: 1.15rem;
  --container: min(90rem, calc(100vw - 3rem));
  --header-height: 6.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - 0.5rem);
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-locked {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

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

svg {
  display: block;
  width: 1.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

svg .fill {
  fill: currentColor;
  stroke: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(6rem, 10vw, 10rem);
  background: var(--paper);
}

.section--dark {
  color: var(--white);
  background: var(--ink);
}

.section--accent {
  background: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-200%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.boot-loader {
  display: grid;
  width: 100%;
  height: 100svh;
  place-items: center;
  background: var(--ink);
}

.boot-loader span {
  width: 3rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(2.25rem);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  max-width: 51rem;
}

.section-heading h2 {
  margin-bottom: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.8vw, 6.7rem);
  font-weight: 900;
  line-height: 0.91;
  letter-spacing: -0.065em;
  text-wrap: balance;
  text-transform: uppercase;
}

.section-heading--inverse {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.75rem;
  height: 2px;
  background: var(--accent);
}

.section--accent .eyebrow > span {
  background: var(--ink);
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 0;
  color: #bcbcb7;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.button {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 0.8rem 1.25rem 0.8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 99rem;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    color 0.35s var(--ease),
    background-color 0.35s var(--ease),
    border-color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  transition: transform 0.35s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(0.2rem);
}

.button--solid,
.button--accent {
  color: var(--white);
  background: var(--accent);
}

.button--solid:hover,
.button--accent:hover {
  background: var(--accent-dark);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(0.5rem);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.button--light {
  color: var(--ink);
  background: var(--paper-bright);
}

.button--light:hover {
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--ink);
}

.button--dark:hover {
  background: #2c2c2c;
}

.button--outline {
  border-color: var(--ink);
}

.button--outline:hover {
  color: var(--white);
  background: var(--ink);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  height: var(--header-height);
  grid-template-columns: 9rem 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-inline: max(1.5rem, calc((100vw - min(90rem, calc(100vw - 3rem))) / 2));
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    height 0.4s var(--ease),
    background-color 0.4s var(--ease),
    border-color 0.4s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  height: 5rem;
  border-color: var(--line-light);
  background: rgba(13, 13, 13, 0.88);
  backdrop-filter: blur(1rem);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 7rem;
  height: 5rem;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: auto;
  height: 4.6rem;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.6rem);
}

.nav-link {
  position: relative;
  padding-block: 0.6rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.65rem 1.2rem;
  border-radius: 99rem;
  color: var(--ink);
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 0.25s;
}

.header-cta:hover {
  background: var(--accent);
}

.header-cta svg {
  width: 1rem;
}

.language-picker {
  position: relative;
}

.language-trigger {
  display: flex;
  width: 3.35rem;
  height: 2.8rem;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 99rem;
  background: transparent;
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 850;
}

.language-trigger svg {
  width: 0.8rem;
  transition: transform 0.3s var(--ease);
}

.language-picker.is-open .language-trigger svg {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  width: 11rem;
  padding: 0.4rem;
  visibility: hidden;
  border: 1px solid var(--line-light);
  border-radius: 0.8rem;
  background: #1b1b1b;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-0.5rem);
  transition:
    opacity 0.25s,
    transform 0.25s,
    visibility 0.25s;
}

.language-picker.is-open .language-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.language-option {
  display: grid;
  width: 100%;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  padding: 0.65rem 0.75rem;
  color: #bdbdbd;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.language-option span:first-child {
  color: var(--accent);
  font-size: 0.65rem;
  font-weight: 850;
}

.language-option span:last-child {
  font-size: 0.77rem;
}

.language-option:hover,
.language-option.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 1.1rem;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s var(--ease);
}

.menu-toggle span:first-child {
  transform: translateY(-0.2rem);
}

.menu-toggle span:last-child {
  transform: translateY(0.2rem);
}

.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: max(50rem, 100svh);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.92) 32%, rgba(13, 13, 13, 0.25) 72%, rgba(13, 13, 13, 0.48) 100%),
    linear-gradient(0deg, rgba(13, 13, 13, 0.74), transparent 40%);
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  filter: saturate(0.8) contrast(1.05);
  scale: 1.04;
  animation: heroZoom 12s var(--ease) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(134, 85, 246, 0.12));
  mix-blend-mode: color;
}

.hero-orbit {
  position: absolute;
  z-index: 3;
  right: clamp(-24rem, -12vw, -8rem);
  bottom: clamp(-18rem, -18vw, -9rem);
  width: min(50vw, 43rem);
  aspect-ratio: 1;
  pointer-events: none;
}

.hero-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.hero-orbit span:nth-child(2) {
  inset: 12%;
  border-color: rgba(134, 85, 246, 0.42);
}

.hero-orbit span:nth-child(3) {
  inset: 27%;
  border: 3px dashed rgba(255, 255, 255, 0.12);
  animation: spin 25s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  align-items: end;
  gap: 4rem;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(6.5rem, 10vh, 8rem);
}

.hero-copy {
  max-width: 58rem;
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  position: absolute;
  width: 2rem;
  height: 1px;
  margin-top: 0.65rem;
  margin-left: -3rem;
  background: var(--accent);
  content: "";
}

.hero-title {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10.5vw, 10.2rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-title > span {
  display: block;
}

.hero-title > span:nth-child(2) {
  padding-left: 0.42em;
}

.hero-title .hero-title__accent {
  padding-left: 0.16em;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) var(--accent);
}

.hero-title > span:nth-child(2) {
  transition-delay: 0.08s;
}

.hero-title > span:nth-child(3) {
  transition-delay: 0.16s;
}

.hero-body {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  transition-delay: 0.24s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  transition-delay: 0.32s;
}

.hero-status {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(13, 13, 13, 0.42);
  backdrop-filter: blur(0.8rem);
}

.status-dot {
  position: relative;
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(134, 85, 246, 0.45);
}

.status-dot.is-open {
  background: var(--green);
  box-shadow: 0 0 0 0.45rem rgba(132, 247, 160, 0.12);
}

.hero-status strong,
.hero-status span {
  display: block;
}

.hero-status strong {
  margin-bottom: 0.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-status div > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  right: max(1.5rem, calc((100vw - min(90rem, calc(100vw - 3rem))) / 2));
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  width: 1px;
  height: 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 50%;
  background: var(--accent);
  content: "";
  animation: scrollLine 1.8s ease-in-out infinite;
}

.proof-bar {
  overflow: hidden;
  color: var(--ink);
  background: var(--accent);
}

.proof-track {
  display: flex;
  width: max-content;
  animation: ticker 28s linear infinite;
}

.proof-set {
  display: flex;
}

.proof-set > span {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  padding: 1.15rem 2rem;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-set > span i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--ink);
}

.intro {
  overflow: hidden;
}

.intro::before {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.intro::after {
  position: absolute;
  top: -2rem;
  right: 0;
  width: 16rem;
  height: 16rem;
  border: 1px dashed var(--line);
  border-radius: 50%;
  content: "";
}

.intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.8fr);
  gap: clamp(4rem, 8vw, 10rem);
}

.intro-side {
  align-self: end;
}

.intro-side > p {
  margin-bottom: 3rem;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 1.5rem 1rem 0 0;
}

.stat + .stat {
  padding-left: 1rem;
  border-left: 1px solid var(--line);
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.stat span {
  color: #5a5a56;
  font-size: 0.7rem;
  line-height: 1.35;
}

.services-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.services-lead .button {
  flex: 0 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 25rem;
  flex-direction: column;
  padding: 1.5rem;
  overflow: hidden;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition:
    color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.service-card::before {
  position: absolute;
  inset: auto 0 0;
  height: 0;
  background: var(--accent);
  content: "";
  transition: height 0.55s var(--ease);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  color: var(--ink);
}

.service-card:hover::before {
  height: 100%;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: auto;
  color: #a2a29f;
}

.service-card__top > span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-card__top svg {
  width: 3.2rem;
  height: 3.2rem;
  stroke-width: 1.2;
}

.service-card:hover .service-card__top {
  color: var(--ink);
}

.service-card h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #aaa;
  font-size: 0.87rem;
  line-height: 1.55;
}

.service-card:hover p {
  color: rgba(13, 13, 13, 0.7);
}

.service-card > a {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}

.service-card:hover > a {
  border-color: rgba(13, 13, 13, 0.4);
}

.about {
  background: var(--paper-bright);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.about-image {
  position: relative;
  margin-bottom: 0;
}

.about-image::before {
  position: absolute;
  z-index: -1;
  top: -1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  left: -1.25rem;
  border: 1px solid var(--line);
  content: "";
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.35) contrast(1.05);
}

.about-image figcaption {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  display: flex;
  width: 10rem;
  height: 10rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 50%;
  background: var(--accent);
  text-align: center;
  animation: float 4s ease-in-out infinite;
}

.about-image figcaption span:first-child {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.about-image figcaption span:last-child {
  max-width: 6rem;
  margin-top: 0.3rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-text {
  max-width: 42rem;
  font-size: 1.05rem;
}

.about-text p {
  margin-bottom: 1.2rem;
}

.about-copy blockquote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0 2rem;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--accent);
}

.about-copy blockquote p {
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-style: italic;
  line-height: 1.25;
}

.about-copy cite {
  color: #666;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products {
  background: #e6e3dc;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(20rem, 0.8fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(4rem, 10vw, 10rem);
}

.products-sticky {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.products-sticky .section-heading h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.products-sticky .section-intro {
  color: #5f5d58;
}

.product-stamp {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
  color: #55534f;
}

.product-stamp svg {
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 auto;
  animation: spin 18s linear infinite;
}

.product-stamp span {
  max-width: 12rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-list li {
  display: grid;
  min-height: 6.7rem;
  grid-template-columns: 3rem 1fr auto;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.35s var(--ease),
    color 0.35s,
    background 0.35s;
}

.product-list li:hover {
  padding-inline: 1rem;
  color: var(--white);
  background: var(--ink);
}

.product-list li > span {
  color: #8f8c85;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-list li strong {
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  line-height: 1.2;
}

.product-list li svg {
  width: 1.4rem;
}

.process .section-heading {
  margin-bottom: 4rem;
}

.process .section-heading h2 {
  max-width: 62rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(13, 13, 13, 0.35);
}

.process-step {
  min-height: 18rem;
  padding: 1.5rem 2rem 0 0;
}

.process-step + .process-step {
  padding-left: 2rem;
  border-left: 1px solid rgba(13, 13, 13, 0.35);
}

.process-step > span {
  display: block;
  margin-bottom: 5rem;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.process-step p {
  max-width: 20rem;
  margin-bottom: 0;
  color: rgba(13, 13, 13, 0.72);
}

.gallery-lead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.text-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 1rem;
  padding: 0 0 0.65rem;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid var(--accent);
  background: transparent;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-grid {
  display: grid;
  grid-auto-rows: clamp(14rem, 25vw, 25rem);
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #222;
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
  grid-column: span 7;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  grid-column: span 5;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.45);
  transition:
    filter 0.7s var(--ease),
    transform 0.8s var(--ease);
}

.gallery-item:hover img {
  filter: saturate(1);
  transform: scale(1.035);
}

.gallery-item > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.35s,
    transform 0.35s var(--ease);
}

.gallery-item:hover > span {
  opacity: 1;
  transform: scale(1);
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 4rem 6rem;
  color: var(--white);
  border: 0;
  background: rgba(8, 8, 8, 0.96);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.8);
}

.lightbox[open] {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.lightbox figure {
  display: grid;
  max-width: min(75rem, 78vw);
  max-height: 85vh;
  place-items: center;
  margin: auto;
}

.lightbox figure img {
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 1rem;
  color: #aaa;
  font-size: 0.75rem;
}

.lightbox button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-arrow--prev svg {
  transform: rotate(180deg);
}

.tour {
  overflow: hidden;
  background: var(--paper-bright);
}

.tour-card {
  position: relative;
  display: grid;
  min-height: min(48rem, 75vh);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.tour-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.4));
  content: "";
}

.tour-card > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}

.tour-card__rings {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 8%;
  width: min(38vw, 34rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
}

.tour-card__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
}

.tour-card__rings i:nth-child(2) {
  inset: 16%;
  border-color: var(--accent);
}

.tour-card__rings i:nth-child(3) {
  inset: 32%;
  border-style: dashed;
  animation: spin 18s linear infinite;
}

.tour-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 43rem;
  margin-right: auto;
  padding: clamp(2rem, 7vw, 7rem);
}

.tour-card__content h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.tour-card__content > p {
  max-width: 32rem;
  color: #c2c2bd;
}

.tour-launch {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.tour-launch > span {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.35s var(--ease);
}

.tour-launch:hover > span {
  transform: scale(1.08);
}

.tour-launch strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tour-card__content small {
  display: block;
  margin-top: 1rem;
  color: #888;
  font-size: 0.66rem;
}

.tour-card.is-playing {
  display: block;
}

.tour-card.is-playing::after {
  display: none;
}

.tour-card > iframe {
  width: 100%;
  min-height: min(48rem, 75vh);
  border: 0;
}

.social {
  background: var(--paper);
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(25rem, 0.75fr);
  align-items: center;
  gap: clamp(4rem, 10vw, 11rem);
}

.social-copy .section-heading h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.social-copy .section-intro {
  color: #5f5d58;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.social-posts {
  display: grid;
  width: 100%;
  max-width: 34rem;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.social-post {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  scroll-snap-align: start;
  transform: rotate(2deg);
  transition: transform 0.5s var(--ease);
}

.social-post::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.88), transparent 55%);
  content: "";
}

.social-post:hover {
  transform: rotate(0deg) scale(1.015);
}

.social-post > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.4);
  transition:
    filter 0.6s,
    transform 0.6s var(--ease);
}

.social-post:hover > img {
  filter: saturate(0.9);
  transform: scale(1.03);
}

.social-post__platform,
.social-post__caption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  left: 1.5rem;
}

.social-post__platform {
  top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 750;
}

.social-post__platform svg {
  width: 1.4rem;
}

.social-post__caption {
  bottom: 1.5rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.social-post__caption strong {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-style: italic;
  line-height: 1;
}

.social-post__caption small {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-head .section-heading h2 {
  font-size: clamp(3.5rem, 7vw, 8rem);
}

.contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 0.9fr 1.5fr;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.contact-info,
.hours {
  padding: 2rem 2rem 2rem 0;
}

.hours {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.contact-block + .contact-block {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.contact-block > span,
.contact-status small {
  display: block;
  margin-bottom: 0.7rem;
  color: #8d8d89;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-block p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.contact-block a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  margin-block: 0.35rem;
  font-size: 0.84rem;
}

.contact-block a svg {
  width: 1rem;
}

.contact-status {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
}

.contact-status small,
.contact-status strong,
.contact-status div > span {
  display: block;
}

.contact-status small {
  margin-bottom: 0.15rem;
}

.contact-status strong {
  font-size: 1rem;
}

.contact-status div > span {
  color: #8d8d89;
  font-size: 0.75rem;
}

.hours h3 {
  margin-bottom: 1.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hours ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.65rem;
  color: #969693;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.73rem;
}

.hours li.is-today {
  color: var(--white);
}

.hours li.is-today span::before {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  vertical-align: middle;
}

.map {
  position: relative;
  min-height: 30rem;
  overflow: hidden;
  border-left: 1px solid var(--line-light);
  background: #222;
}

.map iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(170deg) contrast(0.95);
  opacity: 0;
  transition: opacity 0.5s;
}

.map.is-loaded iframe {
  opacity: 0.8;
}

.map-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 1rem;
  color: #777;
}

.map-loader span {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid #444;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.map-loader small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map > a {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  border-radius: 99rem;
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer {
  padding: 5rem 0 1.5rem;
  color: var(--white);
  background: #080808;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.75fr);
  gap: 4rem;
  padding-bottom: 5rem;
}

.footer-brand img {
  width: 8.5rem;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  max-width: 18rem;
  color: #777;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-column strong {
  margin-bottom: 0.7rem;
  color: #777;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: #c0c0bd;
  font-size: 0.78rem;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  color: #5e5e5b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.65rem;
}

.footer-bottom > span:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
}

.footer-bottom svg {
  width: 1rem;
}

.mobile-actions {
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

@keyframes scrollLine {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(200%);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5rem);
  }
}

@media (max-width: 75rem) {
  .site-header {
    grid-template-columns: 7rem 1fr auto;
  }

  .desktop-nav {
    gap: 1.25rem;
  }

  .header-cta {
    display: none;
  }

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

  .service-card {
    min-height: 21rem;
  }

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

  .map {
    min-height: 28rem;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }
}

@media (max-width: 58rem) {
  :root {
    --container: calc(100vw - 2rem);
    --header-height: 5rem;
  }

  .section {
    padding-block: 5.5rem;
  }

  .site-header {
    height: var(--header-height);
    grid-template-columns: 1fr auto;
    padding-inline: 1rem;
    background: rgba(13, 13, 13, 0.46);
    backdrop-filter: blur(0.7rem);
  }

  .site-header.is-scrolled,
  .site-header.menu-open {
    height: var(--header-height);
  }

  .brand {
    width: 5.5rem;
    height: 4.3rem;
  }

  .brand img {
    height: 3.9rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: 7rem 1.5rem 2rem;
    background:
      radial-gradient(circle at 80% 80%, rgba(134, 85, 246, 0.15), transparent 35%),
      var(--ink);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.35s,
      visibility 0.35s;
  }

  .menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
  }

  .mobile-menu .nav-link {
    padding: 0.35rem 0;
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 10vw, 4rem);
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .mobile-menu .nav-link::after {
    display: none;
  }

  .mobile-menu__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line-light);
    color: #aaa;
    font-size: 0.75rem;
  }

  .hero {
    min-height: max(45rem, 100svh);
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.7) 58%, rgba(13, 13, 13, 0.28) 100%),
      linear-gradient(90deg, rgba(13, 13, 13, 0.8), transparent 75%);
  }

  .hero-media img {
    object-position: 55% center;
  }

  .hero-orbit {
    top: 15%;
    right: -35%;
    bottom: auto;
    width: 80vw;
  }

  .hero-content {
    display: block;
    padding-top: 8rem;
    padding-bottom: 5.5rem;
  }

  .hero-title {
    font-size: clamp(4rem, 19vw, 7.5rem);
    line-height: 0.76;
  }

  .hero-title > span:nth-child(2) {
    padding-left: 0;
  }

  .hero-title .hero-title__accent {
    padding-left: 0;
  }

  .hero-body {
    max-width: 35rem;
  }

  .hero-status {
    width: fit-content;
    margin-top: 1.2rem;
  }

  .scroll-cue {
    display: none;
  }

  .intro-grid,
  .about-grid,
  .products-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .products-grid,
  .social-grid {
    gap: 3.5rem;
  }

  .about-grid {
    gap: 5rem;
  }

  .intro-side {
    max-width: 42rem;
  }

  .services-lead,
  .gallery-lead,
  .contact-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .products-sticky {
    position: static;
  }

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

  .process-step {
    min-height: auto;
    padding: 1.5rem 0 2.5rem;
  }

  .process-step + .process-step {
    padding-left: 0;
    border-top: 1px solid rgba(13, 13, 13, 0.35);
    border-left: 0;
  }

  .process-step > span {
    margin-bottom: 2.5rem;
  }

  .gallery-grid {
    grid-auto-rows: 20rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 1;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(6) {
    grid-column: 1 / -1;
  }

  .tour-card__rings {
    top: 28%;
    right: -15%;
    width: 60vw;
  }

  .social-post {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 40rem) {
  .section-heading h2 {
    font-size: clamp(2.65rem, 13vw, 4.4rem);
  }

  .header-actions {
    gap: 0.5rem;
  }

  .language-trigger {
    width: 3rem;
    height: 3rem;
  }

  .hero-eyebrow {
    padding-left: 2.25rem;
  }

  .hero-eyebrow::before {
    width: 1.5rem;
    margin-left: -2.25rem;
  }

  .hero-title {
    font-size: clamp(3.7rem, 18.5vw, 5.5rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status {
    width: 100%;
  }

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

  .stat {
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
  }

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

  .stat strong {
    margin-bottom: 0;
  }

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

  .service-card {
    min-height: 19rem;
  }

  .about-image {
    margin-inline: 0.75rem;
  }

  .about-image figcaption {
    right: -0.75rem;
    width: 8rem;
    height: 8rem;
  }

  .product-list li {
    grid-template-columns: 2rem 1fr auto;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    width: 100%;
    height: 17rem;
    margin-bottom: 0.75rem;
  }

  .lightbox {
    padding: 4rem 1rem 5rem;
  }

  .lightbox[open] {
    grid-template-columns: 1fr 1fr;
  }

  .lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
    max-width: 100%;
  }

  .lightbox-arrow {
    grid-row: 2;
  }

  .lightbox-arrow--next {
    margin-left: auto;
  }

  .tour {
    padding-inline: 0;
  }

  .tour .container {
    width: 100%;
  }

  .tour-card {
    min-height: 42rem;
  }

  .tour-card__content {
    align-self: end;
    padding: 2rem 1rem 3rem;
  }

  .tour-card__content h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .tour-card__rings {
    top: 22%;
    width: 80vw;
  }

  .social-actions,
  .contact-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .social-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .social-post {
    aspect-ratio: 4 / 5;
  }

  .contact-grid {
    display: block;
  }

  .contact-info,
  .hours {
    padding: 2rem 0;
  }

  .hours {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .map {
    min-height: 24rem;
    margin-inline: calc((100vw - var(--container)) / -2);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding-bottom: 4.5rem;
  }

  .footer-bottom > span:nth-child(2) {
    text-align: left;
  }

  .footer-bottom a {
    justify-content: flex-start;
  }

  .mobile-actions {
    position: fixed;
    z-index: 90;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 99rem;
    background: rgba(13, 13, 13, 0.9);
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(1rem);
  }

  .mobile-actions a {
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    color: var(--white);
    border-radius: 99rem;
    font-size: 0.7rem;
    font-weight: 800;
  }

  .mobile-actions a:last-child {
    color: var(--ink);
    background: var(--accent);
  }

  .mobile-actions svg {
    width: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

@media (hover: none) {
  .gallery-item > span {
    opacity: 1;
    transform: scale(1);
  }
}
