:root {
  --bg-main: #120f0f;
  --bg-surface: #2a2524;
  --bg-panel: rgba(25, 20, 20, 0.96);
  --text-main: #f3ece7;
  --text-soft: rgba(243, 236, 231, 0.72);
  --accent-deep: #3d1b1b;
  --accent-line: #7a5a50;
  --border-soft: rgba(243, 236, 231, 0.08);
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(61, 27, 27, 0.22), transparent 35%),
    linear-gradient(180deg, #171313 0%, #0e0c0c 100%);
  color: var(--text-main);
  font-family: "Oswald", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(12, 10, 10, 0.06), rgba(12, 10, 10, 0));
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

body.page-is-ready::before {
  opacity: 1;
}

img {
  max-width: 100%;
}

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

button {
  font: inherit;
}

::selection {
  background: rgba(143, 61, 61, 0.42);
  color: #f3ece7;
}

section[id] {
  scroll-margin-top: 7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(12, 10, 10, 0.92), rgba(12, 10, 10, 0.6));
  backdrop-filter: blur(14px);
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border-soft);
  background: rgba(42, 37, 36, 0.84);
  box-shadow: var(--shadow-soft);
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(4.6rem, 18vw, 6.75rem);
}

.brand-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(12, 10, 10, 0.42);
  padding: 0.18rem;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tag {
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(243, 236, 231, 0.12);
  border-radius: 999px;
  background: rgba(13, 11, 11, 0.72);
  color: var(--text-main);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(243, 236, 231, 0.24);
  background: rgba(23, 19, 19, 0.95);
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(243, 236, 231, 0.4);
  outline-offset: 4px;
}

.menu-toggle[aria-expanded="true"] {
  transform: translateY(-1px);
  border-color: rgba(122, 90, 80, 0.8);
}

.menu-toggle__label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  width: 1.35rem;
}

.menu-toggle__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  transition: transform 220ms ease, opacity 220ms ease, width 220ms ease;
}

.menu-toggle__icon span:nth-child(2) {
  width: 78%;
}

.menu-toggle__icon span:nth-child(3) {
  width: 56%;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(0.4rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
  width: 100%;
  transform: translateY(-0.4rem) rotate(-45deg);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 0.9rem);
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.7rem;
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a {
  display: inline-block;
  padding: 0.95rem 0.9rem;
  border: 1px solid transparent;
  color: var(--text-main);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, padding-left 180ms ease;
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  border-color: rgba(243, 236, 231, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  padding-left: 1.15rem;
  outline: none;
}

.menu-panel__cta {
  margin-top: 0.35rem;
  background: linear-gradient(135deg, rgba(61, 27, 27, 0.8), rgba(22, 17, 17, 0.9));
  border-color: rgba(122, 90, 80, 0.34) !important;
}

.menu-panel__cta:hover,
.menu-panel__cta:focus-visible {
  background: linear-gradient(135deg, rgba(78, 33, 33, 0.92), rgba(28, 20, 20, 0.98));
}

.hero {
  position: relative;
  min-height: calc(100vh - 6.5rem);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 10, 10, 0.2) 0%, rgba(12, 10, 10, 0.72) 72%, rgba(12, 10, 10, 0.92) 100%),
    #161212;
}

.hero::before {
  content: "";
  position: absolute;
  right: -3rem;
  bottom: -3rem;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 27, 27, 0.22), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 9, 9, 0.56) 0%, rgba(11, 9, 9, 0.16) 45%, rgba(11, 9, 9, 0.68) 100%),
    linear-gradient(180deg, rgba(16, 12, 12, 0.28), rgba(16, 12, 12, 0.82)),
    url("img/hero.webp") center top / cover no-repeat;
  transform: scale(1.03);
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 72% 34%, rgba(61, 27, 27, 0.22), transparent 30%),
    linear-gradient(180deg, transparent 56%, rgba(10, 8, 8, 0.86) 100%);
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 6.5rem);
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 2.5rem 1rem 3.5rem;
}

.hero__socials {
  position: absolute;
  left: 1rem;
  bottom: 1.3rem;
  z-index: 2;
  display: grid;
  gap: 0.7rem;
}

.hero__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(243, 236, 231, 0.14);
  background: rgba(12, 10, 10, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.hero__social-link img {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  object-fit: contain;
}

.hero__social-link:hover,
.hero__social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 236, 231, 0.26);
  background: rgba(12, 10, 10, 0.72);
}

.hero__copy {
  width: min(100%, 56rem);
  margin: 0 auto;
  text-align: center;
  transform: translateY(0);
  opacity: 0;
  transition: opacity 420ms ease, transform 480ms ease;
}

.hero__eyebrow {
  margin: 0 0 0.9rem;
  color: rgba(243, 236, 231, 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero__title-wrap {
  position: relative;
  display: inline-block;
  margin-inline: auto;
  padding-right: clamp(2.5rem, 14vw, 7.5rem);
  --machine-end-offset: clamp(1.65rem, 7.5vw, 3.35rem);
}

.hero__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 16vw, 6.7rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero__title--shadow {
  visibility: hidden;
}

.hero__title-reveal {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.hero__title--ink {
  width: max-content;
  color: #111111;
  text-shadow:
    0 10px 26px rgba(0, 0, 0, 0.18);
}

.hero__machine {
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(8rem, 34vw, 13rem);
  max-width: none;
  transform: translate(-8%, -72%) rotate(-8deg);
  transform-origin: 30% 70%;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.45));
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.hero.is-ready .hero__title-reveal {
  animation: tattoo-reveal 3.4s cubic-bezier(0.65, 0, 0.2, 1) 0.2s forwards;
}

.hero.is-ready .hero__copy {
  opacity: 1;
}

.hero.is-ready .hero__machine {
  opacity: 1;
  animation: machine-trace 3.4s cubic-bezier(0.65, 0, 0.2, 1) 0.2s forwards, machine-buzz 0.22s steps(2) 0.2s infinite;
}

.hero__subtitle {
  margin: 1rem 0 0;
  color: #b84a4a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 5vw, 2rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.5rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(243, 236, 231, 0.12);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.hero__cta:hover,
.hero__cta:focus-visible {
  transform: translateY(-2px);
}

.hero__cta--primary {
  background: linear-gradient(135deg, rgba(61, 27, 27, 0.86), rgba(22, 17, 17, 0.94));
  border-color: rgba(122, 90, 80, 0.36);
}

.hero__cta--ghost {
  background: rgba(12, 10, 10, 0.35);
}

.hero-preview-strip {
  display: none;
}

.about {
  position: relative;
  background: #f5f1ec;
  color: #111111;
  padding: 5.25rem 1.2rem 4.2rem;
  overflow: hidden;
  isolation: isolate;
}

.about::after {
  content: "";
  position: absolute;
  right: -5rem;
  top: 7rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 27, 27, 0.08), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: #f5f1ec;
  transform: translateX(-50%);
  z-index: -1;
}

.about__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.about__heading {
  text-align: center;
}

.about__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about__title {
  margin: 0.5rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.about__content {
  display: grid;
  gap: 2.4rem;
  margin-top: 2.5rem;
}

.about__gallery {
  position: relative;
  width: min(100%, 24rem);
  min-height: 25rem;
  padding-bottom: 2.2rem;
}

.about__photo {
  margin: 0;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

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

.about__photo--base img {
  object-position: center 22%;
}

.about__photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.16);
}

.about__photo--base {
  width: 82%;
  aspect-ratio: 0.9;
  transform: translateX(1.9rem);
}

.about__photo--base:hover {
  transform: translate(1.9rem, -4px);
}

.about__photo--overlay {
  position: absolute;
  left: 0;
  bottom: 1.2rem;
  width: 46%;
  aspect-ratio: 0.8;
  border: 0.45rem solid #f5f1ec;
  z-index: 2;
}

.about__copy {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  font-family: "Cormorant Garamond", serif;
}

.about__copy p {
  margin: 0;
  max-width: 38rem;
  font-size: 1.2rem;
  line-height: 1.55;
}

.about__accent {
  justify-self: end;
  max-width: 20rem;
  color: #8f3d3d;
  font-size: 1.1rem;
  font-style: italic;
  text-align: right;
}

.about__signature {
  display: block;
  width: min(10.5rem, 42vw);
  margin-top: 1.35rem;
  filter: contrast(1.08);
}

.process {
  position: relative;
  background: #f5f1ec;
  color: #111111;
  padding: 1rem 1.2rem 5rem;
}

.process::after {
  content: "";
  position: absolute;
  left: -4rem;
  bottom: 2rem;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 27, 27, 0.08), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}

.process__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.process__header {
  position: sticky;
  top: 5.4rem;
  z-index: 4;
  padding: 0.7rem 0 0.75rem;
  background: linear-gradient(180deg, rgba(245, 241, 236, 0.98), rgba(245, 241, 236, 0.9));
  text-align: center;
}

.process__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.process__title {
  margin: 0.28rem auto 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.65rem, 5.2vw, 2.8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.96;
  text-transform: uppercase;
}

.process__timeline {
  position: relative;
  margin-top: 1rem;
}

.process-carousel {
  display: none;
}

.process__sticky {
  position: sticky;
  top: 11rem;
  display: grid;
  gap: 1.6rem;
  align-items: start;
  min-height: calc(100svh - 12rem);
}

.process__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.process-arm-display {
  position: relative;
  width: min(100%, 18.5rem);
  height: min(68svh, 39rem);
  aspect-ratio: 572 / 1024;
}

.process-arm-layer {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 340ms ease;
}

.process-arm-layer.is-active {
  opacity: 1;
}

.process-arm {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background:
    radial-gradient(circle at 50% 20%, rgba(61, 27, 27, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(20, 20, 20, 0.04), rgba(20, 20, 20, 0.08)),
    #efe8df;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.process-arm--image {
  background: #ece4da;
  padding: 0.6rem;
}

.process-arm__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.process-arm--focus .process-arm__image {
  transform: none;
}

.process-arm::before,
.process-arm::after {
  content: "";
  position: absolute;
  inset: auto;
}

.process-arm::before {
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.04));
  pointer-events: none;
}

.process-arm::after {
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.08));
}

.process-arm__tag,
.process-arm__state {
  position: absolute;
  z-index: 2;
}

.process-arm__tag {
  top: 1rem;
  left: 1rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-arm__state {
  bottom: 1rem;
  left: 50%;
  color: rgba(17, 17, 17, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.process__tips {
  position: relative;
  display: grid;
  gap: 0.7rem;
  align-content: start;
  min-height: 15.5rem;
}

.process-tip {
  display: grid;
  align-content: start;
  gap: 0.38rem;
  max-width: 24rem;
  margin: 0;
  padding: 0.68rem 0.76rem;
  border-left: 2px solid rgba(61, 27, 27, 0.22);
  opacity: 0.14;
  transform: translateY(14px);
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease, background-color 240ms ease;
}

.process-tip.is-active {
  opacity: 1;
  transform: translateY(0);
  border-color: rgba(61, 27, 27, 0.72);
  background: rgba(61, 27, 27, 0.035);
  box-shadow: inset 0 0 0 1px rgba(61, 27, 27, 0.05);
}

.process-tip.is-complete {
  opacity: 0.56;
  transform: translateY(0);
  border-color: rgba(61, 27, 27, 0.42);
}

.process-tip__step {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-tip__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.process-tip__text {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 0.8rem;
  line-height: 1.28;
}

.process__markers {
  margin-top: -72svh;
}

.process-marker {
  height: 90svh;
}

.process-marker:last-child {
  height: 125svh;
}

.works {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(61, 27, 27, 0.22), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #171414, #100d0d 70%);
  color: #f3ece7;
  padding: 4.5rem 1.2rem 5rem;
}

.works__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.works__heading {
  width: min(36rem, 100%);
}

.works__eyebrow {
  margin: 0;
  color: rgba(243, 236, 231, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.works__title {
  margin: 0.35rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.94;
  text-transform: uppercase;
}

.works__intro {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(243, 236, 231, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.works__grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.works-group + .works-group {
  margin-top: 2.8rem;
}

.works-group__toggle {
  display: none;
}

.works-group__divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
}

.works-group__divider span {
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(243, 236, 231, 0.22), transparent);
}

.works-group__divider h3 {
  margin: 0;
  color: rgba(243, 236, 231, 0.88);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.works-group__divider h3::before {
  content: "";
  display: inline-block;
  width: 0.48rem;
  height: 0.48rem;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: #8f3d3d;
  box-shadow: 0 0 18px rgba(143, 61, 61, 0.45);
  vertical-align: 0.04rem;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(243, 236, 231, 0.08);
  background: linear-gradient(180deg, rgba(42, 37, 36, 0.94), rgba(16, 13, 13, 0.98));
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.work-card.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover {
  transform: translateY(-6px);
}

.work-card__media {
  position: relative;
  aspect-ratio: 4 / 5.25;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 58%),
    radial-gradient(circle at 28% 22%, rgba(61, 27, 27, 0.58), transparent 22%),
    linear-gradient(180deg, rgba(243, 236, 231, 0.06), rgba(243, 236, 231, 0.015)),
    #1a1716;
}

.work-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.55)),
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 255, 255, 0.018) 32px 33px);
  pointer-events: none;
}

.work-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.03);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 420ms ease, transform 620ms ease;
}

.hero-preview__media,
.about__photo,
.process-arm,
.work-card__media {
  position: relative;
  overflow: hidden;
}

.hero-preview__media.is-loading-image::before,
.about__photo.is-loading-image::before,
.process-arm.is-loading-image::before,
.work-card__media.is-loading-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.14) 38%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.08));
  transform: translateX(-100%);
  animation: image-shimmer 1.35s linear infinite;
  z-index: 2;
  pointer-events: none;
}

img.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.work-card__placeholder {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  color: rgba(243, 236, 231, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card__body {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1rem 1.1rem;
}

.work-card__meta {
  margin: 0;
  color: rgba(243, 236, 231, 0.56);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.work-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.03;
  text-transform: uppercase;
}

.work-card--featured .work-card__title {
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(61, 27, 27, 0.16), transparent 24%),
    radial-gradient(circle at 76% 20%, rgba(0, 0, 0, 0.22), transparent 22%),
    linear-gradient(180deg, #191515, #120f0f 72%);
  color: #f3ece7;
  padding: 4.5rem 1.2rem;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 26%, rgba(61, 27, 27, 0.18), transparent 24%),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #151212, #0f0c0c 74%);
  color: #f3ece7;
  padding: 4.6rem 1.2rem 4.9rem;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.012) 34px 35px);
  opacity: 0.45;
  pointer-events: none;
}

.testimonials__inner {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.testimonials__heading {
  width: min(33rem, 100%);
}

.testimonials__eyebrow {
  margin: 0;
  color: rgba(243, 236, 231, 0.72);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.testimonials__title {
  margin: 0.38rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.testimonials__grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.testimony-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1rem 1.2rem;
  border: 1px solid rgba(243, 236, 231, 0.08);
  background:
    linear-gradient(180deg, rgba(42, 37, 36, 0.74), rgba(14, 12, 12, 0.9)),
    #141111;
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.26);
  isolation: isolate;
}

.testimony-card::before {
  content: "";
  position: absolute;
  inset: auto auto -2.5rem -2.8rem;
  width: 10rem;
  height: 10rem;
  border-radius: 46% 54% 52% 48% / 54% 41% 59% 46%;
  background:
    radial-gradient(circle at 40% 38%, rgba(96, 37, 37, 0.8), rgba(38, 17, 17, 0.92) 58%, rgba(13, 10, 10, 0.96));
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.2);
  transform-origin: 34% 66%;
  transition:
    opacity 220ms ease,
    transform 900ms cubic-bezier(0.22, 0.72, 0.18, 1) var(--reveal-delay);
}

.testimony-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 72%, rgba(255, 255, 255, 0.04), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(61, 27, 27, 0.16), transparent 18%);
  opacity: 0;
  transition: opacity 520ms ease calc(var(--reveal-delay) + 180ms);
  pointer-events: none;
}

.testimony-card__name,
.testimony-card__text {
  position: relative;
  z-index: 1;
  opacity: 0;
  clip-path: inset(0 100% 0 0 round 0.6rem);
  filter: blur(5px);
}

.testimony-card__name {
  margin: 0;
  color: rgba(243, 236, 231, 0.92);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    opacity 280ms ease calc(var(--reveal-delay) + 220ms),
    clip-path 680ms cubic-bezier(0.24, 0.8, 0.18, 1) calc(var(--reveal-delay) + 120ms),
    filter 680ms ease calc(var(--reveal-delay) + 120ms);
}

.testimony-card__text {
  margin: 0.65rem 0 0;
  color: rgba(243, 236, 231, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.02rem;
  line-height: 1.55;
  transition:
    opacity 320ms ease calc(var(--reveal-delay) + 430ms),
    clip-path 900ms cubic-bezier(0.24, 0.8, 0.18, 1) calc(var(--reveal-delay) + 280ms),
    filter 900ms ease calc(var(--reveal-delay) + 280ms);
}

.testimony-card.is-visible::before {
  opacity: 0.95;
  transform: scale(1.2);
}

.testimony-card.is-visible::after {
  opacity: 1;
}

.testimony-card.is-visible .testimony-card__name,
.testimony-card.is-visible .testimony-card__text {
  opacity: 1;
  clip-path: inset(0 0 0 0 round 0.6rem);
  filter: blur(0);
}

.location {
  position: relative;
  overflow: hidden;
  background: #f5f1ec;
  color: #111111;
  padding: 4.5rem 1.2rem;
}

.location::before {
  content: "";
  position: absolute;
  top: 2.8rem;
  right: -4rem;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 61, 61, 0.12), transparent 68%);
  pointer-events: none;
}

.location__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.location__eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.location__title {
  margin: 0.38rem 0 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.location__text {
  margin: 1rem 0 0;
  max-width: 34rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  line-height: 1.55;
}

.location__link {
  display: inline-flex;
  margin-top: 1.1rem;
  color: var(--accent-deep);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location__media {
  display: grid;
  gap: 1rem;
}

.location__studio {
  position: relative;
  margin: 0;
  min-height: 14rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #e8e0d8;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location__studio img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.04);
}

.location__studio figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  margin: 0;
  padding: 0.42rem 0.62rem;
  background: rgba(17, 13, 13, 0.78);
  color: #f3ece7;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.location__map {
  min-height: 20rem;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #e8e0d8;
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(0.75) contrast(1.05);
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(4px);
}

.contact::before {
  top: 2rem;
  right: -2rem;
  width: 14rem;
  height: 14rem;
  background: radial-gradient(circle, rgba(61, 27, 27, 0.34), transparent 68%);
}

.contact::after {
  left: -3rem;
  bottom: -2rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.045), transparent 66%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.contact__eyebrow {
  margin: 0;
  color: rgba(243, 236, 231, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.contact__title {
  margin: 0.4rem 0 0;
  max-width: 11ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.95;
  text-transform: uppercase;
}

.contact__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(243, 236, 231, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
}

.contact__details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.contact__details p {
  margin: 0;
  color: rgba(243, 236, 231, 0.76);
  font-size: 0.94rem;
}

.contact__details span {
  display: inline-block;
  min-width: 6rem;
  color: rgba(243, 236, 231, 0.48);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.contact__social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(243, 236, 231, 0.1);
  background: rgba(245, 241, 236, 0.03);
  color: #f3ece7;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.contact__social-link img {
  width: 1.3rem;
  height: 1.3rem;
  object-fit: contain;
}

.contact__social-link span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact__social-link:hover,
.contact__social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 236, 231, 0.2);
  background: rgba(245, 241, 236, 0.07);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
  border: 1px solid rgba(243, 236, 231, 0.08);
  background:
    linear-gradient(180deg, rgba(42, 37, 36, 0.94), rgba(19, 15, 15, 0.98)),
    #171414;
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.3);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 46px rgba(0, 0, 0, 0.34);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(61, 27, 27, 0.16), transparent 24%),
    radial-gradient(circle at 84% 86%, rgba(255, 255, 255, 0.04), transparent 18%);
  pointer-events: none;
}

.contact-form__field {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.35rem;
}

.contact-form__row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
}

.contact-form__field span {
  color: rgba(243, 236, 231, 0.82);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 236, 231, 0.12);
  background: rgba(245, 241, 236, 0.03);
  color: #f3ece7;
  padding: 0.88rem 0.92rem;
  font: inherit;
}

.contact-form input[type="file"] {
  cursor: pointer;
}

.contact-form input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 1px solid rgba(243, 236, 231, 0.14);
  background: rgba(61, 27, 27, 0.72);
  color: #f3ece7;
  padding: 0.55rem 0.75rem;
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form__field small {
  color: rgba(243, 236, 231, 0.5);
  font-size: 0.72rem;
  line-height: 1.4;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(243, 236, 231, 0.36);
}

.contact-form textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-form__submit {
  position: relative;
  z-index: 1;
  justify-self: start;
  border: 1px solid rgba(157, 69, 69, 0.42);
  background: linear-gradient(180deg, rgba(61, 27, 27, 0.94), rgba(44, 18, 18, 0.98));
  color: #f3ece7;
  padding: 0.92rem 1.4rem;
  font: inherit;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-form__note {
  position: relative;
  z-index: 1;
  margin: -0.1rem 0 0;
  color: rgba(243, 236, 231, 0.58);
  font-size: 0.72rem;
  line-height: 1.45;
}

.site-footer {
  background: #0c0a0a;
  color: rgba(243, 236, 231, 0.7);
  padding: 1.6rem 1.2rem 2rem;
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.site-footer__brand {
  margin: 0;
  color: #f3ece7;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.site-footer__text {
  margin: 0.2rem 0 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.site-footer__links a {
  color: rgba(243, 236, 231, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #f3ece7;
}

@keyframes tattoo-reveal {
  from {
    clip-path: inset(0 100% 0 0);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes machine-buzz {
  from {
    margin-top: 0;
  }

  to {
    margin-top: 1px;
  }
}

@keyframes machine-trace {
  0% {
    left: 0;
    transform: translate(-18%, -76%) rotate(-10deg);
  }

  15% {
    transform: translate(-8%, -69%) rotate(-7deg);
  }

  60% {
    transform: translate(-10%, -73%) rotate(-8.5deg);
  }

  100% {
    left: calc(100% - var(--machine-end-offset));
    transform: translate(0, -72%) rotate(-8deg);
  }
}

@keyframes image-shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(120%);
  }
}

@media (min-width: 768px) {
  .site-header {
    padding-inline: 1.5rem;
  }

  .navbar {
    padding: 1rem 1.25rem;
  }

  .menu-panel {
    left: auto;
    width: min(22rem, 100%);
  }

  .hero {
    min-height: calc(100vh - 7.4rem);
    overflow: visible;
  }

  .hero__inner {
    min-height: calc(100vh - 7.4rem);
    padding: 4.2rem 1.5rem 4.8rem;
    overflow: visible;
  }

  .hero__copy {
    width: min(100%, 58rem);
    transform: translateY(1.8rem);
  }

  .hero__socials {
    left: 1.35rem;
    bottom: 2rem;
  }

  .hero__social-link {
    width: 3.25rem;
    height: 3.25rem;
  }

  .hero__social-link img {
    width: 2rem;
    height: 2rem;
  }

  .brand-name {
    font-size: 1.7rem;
  }

  .hero__title-wrap {
    transform: translateX(2.4rem);
  }

  .about {
    padding: 6.4rem 1.8rem 5rem;
  }

  .about__content {
    grid-template-columns: minmax(18rem, 30rem) minmax(20rem, 1fr);
    align-items: start;
    gap: 3.4rem;
    margin-top: 3.1rem;
  }

  .about__gallery {
    min-height: 30rem;
  }

  .about__photo--base {
    transform: translateX(2.2rem);
  }

  .about__photo--base:hover {
    transform: translate(2.2rem, -4px);
  }

  .about__photo--overlay {
    left: 0;
    bottom: 1.6rem;
    width: 45%;
  }

  .about__copy {
    padding-top: 1.1rem;
  }

  .about__signature {
    width: min(9.5rem, 100%);
    margin-top: 2rem;
  }

  .works {
    padding: 5rem 1.8rem 5.5rem;
  }

  .testimonials {
    padding: 5rem 1.8rem 5.4rem;
  }

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

  .location {
    padding: 5rem 1.8rem;
  }

  .location__inner {
    grid-template-columns: minmax(16rem, 0.85fr) minmax(22rem, 1.15fr);
    align-items: center;
    gap: 2.6rem;
  }

  .location__studio {
    min-height: 15.5rem;
  }

  .location__map {
    min-height: 24rem;
  }

  .works__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .works-group__divider {
    margin-bottom: 1.25rem;
  }

  .work-card {
    grid-column: span 4;
  }

  .contact {
    padding: 5rem 1.8rem;
  }

  .contact__inner {
    grid-template-columns: minmax(16rem, 1fr) minmax(20rem, 30rem);
    align-items: start;
    gap: 2.4rem;
  }

  .contact-form {
    padding: 1.35rem;
  }

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

  .site-footer {
    padding-inline: 1.8rem;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .process {
    padding: 1.1rem 1.8rem 6rem;
  }

  .process__header {
    top: 6.4rem;
    padding-bottom: 0.95rem;
  }

  .process__title {
    max-width: none;
  }

  .process__sticky {
    grid-template-columns: minmax(18rem, 1fr) minmax(16rem, 24rem);
    gap: 2.4rem;
  }

  .process__visual {
    display: block;
    width: min(100%, 44rem);
    margin: 0 auto;
  }

  .process__tips {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: min(18rem, 32vw);
    min-height: 18rem;
  }

  .process-arm-display {
    width: min(100%, 20.5rem);
    height: min(70svh, 41rem);
  }
}

@media (min-width: 1100px) {
  .hero__inner {
    padding-inline: 2rem;
  }

  .hero__title-wrap {
    padding-right: 10rem;
    transform: translateX(4.2rem);
    --machine-end-offset: 10.25rem;
  }

  .hero__copy {
    transform: translateY(2.8rem);
  }

  .hero__machine {
    top: 50%;
    width: clamp(17rem, 23vw, 21rem);
    transform: translate(6%, -68%) rotate(-7deg);
  }

  .hero__subtitle {
    margin-top: 1.15rem;
  }

  .hero-preview-strip {
    position: relative;
    display: block;
    z-index: 2;
    margin-top: -1.9rem;
    padding: 0 2rem 3.5rem;
  }

  .hero-preview-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem;
    width: min(1120px, 100%);
    margin: 0 auto;
  }

  .hero-preview {
    padding: 0.9rem 0.85rem 1rem;
    border: 1px solid rgba(243, 236, 231, 0.08);
    background: linear-gradient(180deg, rgba(42, 37, 36, 0.96), rgba(20, 17, 17, 0.98));
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    animation-duration: 850ms;
    animation-timing-function: cubic-bezier(0.2, 0.9, 0.2, 1);
    animation-fill-mode: forwards;
  }

  .hero-preview--left {
    animation-name: preview-in-left;
    animation-delay: 140ms;
  }

  .hero-preview--center {
    animation-name: preview-in-up;
    animation-delay: 260ms;
  }

  .hero-preview--right {
    animation-name: preview-in-right;
    animation-delay: 380ms;
  }

  .hero-preview__media {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 8.9rem;
    padding-top: 0.15rem;
  }

  .hero-preview__media img {
    display: block;
    width: min(100%, 8.2rem);
    height: auto;
    object-fit: cover;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  }

  .hero-preview__label {
    margin: 0.55rem 0 0;
    color: rgba(243, 236, 231, 0.78);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-align: center;
    text-transform: uppercase;
  }

  .works__grid {
    gap: 1.35rem;
  }

  .testimonials__grid {
    gap: 1.35rem;
  }

  .location__inner {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(28rem, 1.22fr);
    gap: 4rem;
  }

  .location__media {
    grid-template-columns: minmax(13rem, 0.52fr) minmax(22rem, 1fr);
    align-items: stretch;
  }

  .location__studio {
    min-height: 24rem;
    transform: translateY(1.2rem);
  }

  .contact__inner {
    grid-template-columns: minmax(18rem, 1fr) minmax(24rem, 31rem);
    gap: 4rem;
  }

  .process {
    padding-inline: 2rem;
  }

  .process__timeline {
    margin-top: 1.1rem;
  }

  .process__sticky {
    top: 10.6rem;
    grid-template-columns: minmax(24rem, 1fr);
    gap: 4rem;
    min-height: calc(100svh - 11.8rem);
  }

  .process__visual {
    display: block;
    width: min(100%, 49rem);
    margin: 0 auto;
  }

  .process__tips {
    right: 0;
    left: auto;
    width: min(19rem, 28vw);
  }

  .process-arm-display {
    width: min(100%, 22rem);
    height: min(72svh, 43rem);
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - 6.5rem);
  }

  .hero__inner {
    min-height: calc(100svh - 6.5rem);
    padding: 3.2rem 0.9rem 5.2rem;
  }

  .hero__socials {
    left: 0.75rem;
    bottom: 1.05rem;
    gap: 0.55rem;
  }

  .hero__social-link {
    width: 2.75rem;
    height: 2.75rem;
  }

  .hero__social-link img {
    width: 1.65rem;
    height: 1.65rem;
  }

  .hero__title-wrap {
    width: min(100%, 19.2rem);
    padding-right: clamp(3.4rem, 18vw, 5rem);
    --machine-end-offset: clamp(1rem, 5.5vw, 2.45rem);
  }

  .hero__title {
    width: 100%;
    font-size: clamp(2.4rem, 12.3vw, 4.05rem);
    line-height: 0.94;
  }

  .hero__title--ink {
    width: 100%;
  }

  .hero__title-reveal {
    width: calc(100% - 0.2rem);
  }

  .hero__machine {
    width: clamp(7rem, 31vw, 9.2rem);
    transform: translate(-10%, -72%) rotate(-8deg);
  }

  .hero.is-ready .hero__copy {
    transform: none;
  }

  .works {
    padding-inline: 0.9rem;
  }

  .testimonials {
    padding-inline: 0.9rem;
  }

  .testimonials__grid {
    gap: 0.9rem;
  }

  .location {
    padding-inline: 0.9rem;
  }

  .location__studio {
    min-height: 13rem;
  }

  .location__map {
    min-height: 18rem;
  }

  .works-group + .works-group {
    margin-top: 2.3rem;
  }

  .works-group {
    position: relative;
  }

  .works-group__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin: 0.95rem auto 0;
    width: fit-content;
    padding: 0.2rem 0;
    border: 0;
    background: transparent;
    color: rgba(243, 236, 231, 0.86);
    font: inherit;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .works-group__toggle::after {
    content: "";
    width: 0.55rem;
    height: 0.55rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 220ms ease;
  }

  .works-group.is-expanded .works-group__toggle::after {
    transform: rotate(-135deg) translateY(-1px);
  }

  .work-card--more {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(12px);
    margin: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease, max-height 280ms ease, margin 220ms ease;
  }

  .works-group.is-expanded .work-card--more {
    opacity: 1;
    max-height: 40rem;
    transform: translateY(0);
    margin: 0;
    pointer-events: auto;
  }

  .works-group .works__grid {
    margin-top: 1.35rem;
  }

  .work-card__media {
    aspect-ratio: 4 / 5.35;
  }

  .contact {
    padding-inline: 0.9rem;
  }

  .contact__title {
    max-width: 12ch;
  }

  .contact-form {
    padding: 1rem;
  }

  .contact-form__submit {
    width: 100%;
    justify-self: stretch;
  }

  .process {
    padding-inline: 0.9rem;
  }

  .process__header {
    position: static;
    padding: 0.55rem 0 0.5rem;
  }

  .process__timeline {
    display: none;
  }

  .process-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 1fr);
    gap: 0.95rem;
    margin-top: 1.1rem;
    overflow-x: auto;
    padding: 0.2rem 0.2rem 0.8rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .process-carousel::-webkit-scrollbar {
    display: none;
  }

  .process-slide {
    display: grid;
    gap: 0.75rem;
    scroll-snap-align: center;
  }

  .process-slide__media {
    width: min(100%, 18rem);
    margin: 0 auto;
  }

  .process-slide__tip {
    display: grid;
    gap: 0.35rem;
    min-height: 6.8rem;
    padding: 0.72rem 0.8rem 0.82rem;
    border-left: 2px solid rgba(61, 27, 27, 0.5);
    background: rgba(61, 27, 27, 0.05);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
  }

  .process-tip__step {
    font-size: 0.46rem;
    letter-spacing: 0.14em;
  }

  .process-tip__title {
    font-size: 0.96rem;
  }

  .process-tip__text {
    font-size: 0.82rem;
    line-height: 1.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__title-reveal {
    clip-path: inset(0 0 0 0);
    animation: none;
  }

  .hero__machine {
    animation: none;
    opacity: 1;
    left: calc(100% - var(--machine-end-offset));
  }

  .hero-preview {
    opacity: 1;
    animation: none;
  }

  .process-arm-layer,
  .process-tip,
  .work-card,
  .work-card__media img {
    transition: none;
  }

  .hero-preview__media.is-loading-image::before,
  .about__photo.is-loading-image::before,
  .process-arm.is-loading-image::before,
  .work-card__media.is-loading-image::before {
    animation: none;
  }
}

@keyframes preview-in-left {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes preview-in-right {
  from {
    opacity: 0;
    transform: translateX(48px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes preview-in-up {
  from {
    opacity: 0;
    transform: translateY(48px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
