:root {
  --paper: #f5f2ec;
  --paper-2: #ebe7de;
  --white: #fff;
  --ink: #151515;
  --muted: #686762;
  --orange: #ff5b18;
  --orange-deep: #e94800;
  --peach: #ffd6bd;
  --line: rgba(21, 21, 21, .16);
  --shell: min(1380px, calc(100% - 64px));
  --ease: cubic-bezier(.22, .76, .18, 1);
  --font: "Avenir Next", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.header-inner,
.hero,
.about,
.services,
.site-footer {
  width: var(--shell);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 0;
  transition: padding .3s var(--ease);
}

.header-inner {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 9px 8px 16px;
  border: 1px solid rgba(21, 21, 21, .12);
  border-radius: 22px;
  background: rgba(250, 248, 243, .82);
  box-shadow: 0 12px 38px rgba(30, 25, 18, .06);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  transition: min-height .3s var(--ease), border-radius .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.site-header.is-scrolled {
  padding-top: 8px;
}

.site-header.is-scrolled .header-inner {
  min-height: 56px;
  border-radius: 18px;
  background: rgba(250, 248, 243, .94);
  box-shadow: 0 14px 42px rgba(30, 25, 18, .1);
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  font-weight: 650;
  letter-spacing: -.025em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: var(--orange);
  transition: border-radius .35s var(--ease), background .25s ease, transform .45s var(--ease);
}

.brand-mark img {
  width: 24px;
  height: 22px;
  object-fit: contain;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  border-radius: 50%;
  background: var(--ink);
  transform: rotate(8deg);
}

.nav-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding-right: 8px;
  border-right: 1px solid var(--line);
}

.desktop-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 11px;
  font-size: .74rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 7px;
  left: 13px;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(21, 21, 21, .055);
  outline: 0;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  background: rgba(21, 21, 21, .055);
}

.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-contact {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 18px;
  padding: 10px 15px 10px 17px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  font-size: .74rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, transform .25s var(--ease);
}

.header-contact span {
  color: var(--orange);
  font-size: 1rem;
  transition: color .2s ease, transform .25s var(--ease);
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--ink);
  background: var(--orange);
  outline: 0;
  transform: translateY(-1px);
}

.header-contact:hover span,
.header-contact:focus-visible span {
  color: var(--ink);
  transform: translate(2px, -2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--ink);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: transform .25s var(--ease);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.site-header.menu-active .header-inner {
  border-color: rgba(255, 255, 255, .13);
  color: var(--white);
  background: rgba(21, 21, 21, .96);
  box-shadow: none;
}

.site-header.menu-active .brand-mark {
  background: var(--orange);
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: none;
  padding: 122px 24px 34px;
  color: var(--white);
  background: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .35s var(--ease);
}

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

.mobile-menu > div {
  display: grid;
  gap: 1px;
}

.mobile-menu a {
  width: max-content;
  padding: 3px 0;
  font-size: clamp(2.7rem, 14vw, 5rem);
  font-weight: 560;
  letter-spacing: -.065em;
  line-height: 1.02;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--orange);
  outline: 0;
}

.mobile-menu p {
  margin: auto 0 0;
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}

/* Hero */
.hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, .92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(46px, 5vw, 82px);
  padding: 120px 0 54px;
}

.hero h1,
.about h2,
.section-heading h2,
.approach h2,
.contact h2 {
  margin: 0;
  font-weight: 540;
  letter-spacing: -.067em;
  line-height: .93;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(4.3rem, 7.1vw, 7.7rem);
}

.hero h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-intro-row {
  display: grid;
  max-width: 690px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-intro-row > p {
  max-width: 480px;
  margin: 0;
  color: #45443f;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  letter-spacing: -.02em;
  line-height: 1.52;
}

.round-link {
  display: grid;
  width: 102px;
  height: 102px;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 4px;
  padding: 16px;
  border-radius: 32px;
  color: var(--white);
  background: var(--ink);
  font-size: .67rem;
  font-weight: 600;
  line-height: 1.25;
  transition: border-radius .35s var(--ease), background .25s ease, transform .35s var(--ease);
}

.round-link b {
  color: var(--orange);
  font-size: 1.15rem;
  font-weight: 400;
  transition: color .2s ease, transform .25s var(--ease);
}

.round-link:hover,
.round-link:focus-visible {
  border-radius: 50%;
  background: var(--orange);
  outline: 0;
  transform: rotate(-3deg);
}

.round-link:hover b,
.round-link:focus-visible b {
  color: var(--ink);
  transform: translateY(3px);
}

.hero-media {
  position: relative;
  margin: 0;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform .5s var(--ease);
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: .9;
  border-radius: 34px;
  background: var(--paper-2);
  isolation: isolate;
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero-image-wrap::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(21, 21, 21, .26));
  content: "";
  pointer-events: none;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.025);
  transition: transform 1s var(--ease), filter .7s ease;
}

.hero-media:hover .hero-image-wrap img {
  filter: saturate(.93) contrast(1.03);
  transform: scale(1.07);
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 19px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.hero-seal {
  position: absolute;
  z-index: 3;
  top: 10%;
  left: -48px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 34px;
  background: var(--orange);
  box-shadow: 0 18px 48px rgba(94, 30, 0, .18);
  animation: seal-float 5.5s ease-in-out infinite;
  transition: border-radius .45s var(--ease), transform .45s var(--ease);
}

.hero-seal::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 25px;
  content: "";
  transition: border-radius .45s var(--ease), inset .45s var(--ease);
}

.hero-seal img {
  width: 55px;
  height: 50px;
  object-fit: contain;
}

.hero-media:hover .hero-seal {
  border-radius: 50%;
}

.hero-media:hover .hero-seal::before {
  inset: 8px;
  border-radius: 50%;
}

/* Marquee */
.capability-rail {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.rail-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.capability-rail:hover .rail-track {
  animation-play-state: paused;
}

.rail-set {
  display: flex;
  flex: none;
  align-items: center;
}

.rail-set span {
  padding: 15px 18px;
  font-size: .68rem;
  font-weight: 580;
  letter-spacing: .075em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-set i {
  color: var(--orange);
  font-size: .9rem;
  font-style: normal;
  font-weight: 400;
}

/* Shared headings */
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.section-label::before {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--orange);
  content: "";
}

.section-label.light {
  color: rgba(255, 255, 255, .74);
}

/* About */
.about {
  position: relative;
  display: grid;
  min-height: 540px;
  grid-template-columns: 1.05fr .8fr .34fr;
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  margin-top: 64px;
  padding: clamp(64px, 6vw, 88px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--orange) url("assets/orange-field.png") center / cover no-repeat;
  isolation: isolate;
}

.about::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 91, 24, .08), rgba(255, 225, 205, .13));
  content: "";
}

.about .section-label {
  margin-bottom: 36px;
  color: rgba(21, 21, 21, .63);
}

.about .section-label::before {
  background: var(--ink);
}

.about h2,
.section-heading h2,
.approach h2 {
  font-size: clamp(3.1rem, 5.3vw, 6.25rem);
}

.about-copy {
  align-self: end;
  padding-bottom: 4px;
}

.about-copy p {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  letter-spacing: -.02em;
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(21, 21, 21, .22);
}

.about-mark {
  position: relative;
  display: grid;
  width: min(100%, 168px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 38%;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  animation: mark-morph 7s ease-in-out infinite;
}

.about-mark::before,
.about-mark::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: inherit;
  content: "";
}

.about-mark::before { inset: -13px; }
.about-mark::after { inset: -26px; }

.about-mark img {
  width: 76px;
  height: 70px;
  object-fit: contain;
}

/* Services */
.services {
  padding: clamp(84px, 7vw, 104px) 0 clamp(74px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .52fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}

.section-heading .section-label {
  grid-column: 1 / -1;
  margin-bottom: -10px;
}

.section-heading > p:last-child {
  max-width: 420px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.62;
}

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

.service-card {
  --card-bg: #fff;
  position: relative;
  display: grid;
  min-height: 548px;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, .12);
  border-radius: 26px;
  background: var(--card-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .55) inset;
  isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.service-card.span-4 { grid-column: span 4; min-height: 526px; }
.service-card.span-5 { grid-column: span 5; }
.service-card.span-7 { grid-column: span 7; }
.service-card.span-12 { grid-column: span 12; }

.service-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(380px circle at var(--x, 50%) var(--y, 40%), rgba(255, 91, 24, .12), transparent 58%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.service-card:hover {
  box-shadow: 0 24px 50px rgba(43, 34, 23, .12);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.card-soft { --card-bg: var(--paper-2); }
.service-card.card-orange { --card-bg: var(--orange); }
.service-card.card-dark { --card-bg: var(--ink); color: var(--white); }

.service-visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 296px;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  border-bottom: 1px solid rgba(21, 21, 21, .12);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform .38s var(--ease);
}

.span-4 .service-visual {
  min-height: 252px;
  padding: 20px;
}

.card-dark .service-visual {
  border-color: rgba(255, 255, 255, .13);
}

.service-visual::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(21, 21, 21, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 21, 21, .035) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  opacity: .7;
  pointer-events: none;
}

.card-dark .service-visual::before {
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
}

.service-visual svg {
  position: relative;
  z-index: 1;
  width: min(100%, 610px);
  overflow: visible;
  transform: translateZ(26px);
}

.service-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 30px;
}

.service-type {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: .63rem;
  font-weight: 650;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.card-orange .service-type,
.card-dark .service-type {
  color: currentColor;
  opacity: .58;
}

.service-content h3 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(2rem, 3.25vw, 3.8rem);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: 1;
}

.span-4 .service-content h3 {
  font-size: clamp(1.8rem, 2.6vw, 3rem);
}

.service-content > p:not(.service-type) {
  max-width: 590px;
  margin: 16px 0 22px;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.56;
}

.card-orange .service-content > p:not(.service-type),
.card-dark .service-content > p:not(.service-type) {
  color: currentColor;
  opacity: .72;
}

.service-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-content li {
  padding: 6px 9px;
  border: 1px solid rgba(21, 21, 21, .17);
  border-radius: 999px;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.card-dark .service-content li {
  border-color: rgba(255, 255, 255, .22);
}

.text-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 650;
}

.text-link span {
  color: var(--orange);
  font-size: 1rem;
  transition: transform .25s var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.card-jewellery {
  min-height: 452px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, .65fr);
  grid-template-rows: 1fr;
}

.card-jewellery .service-visual {
  min-height: 100%;
  border-right: 1px solid rgba(21, 21, 21, .12);
  border-bottom: 0;
}

.card-jewellery .service-content {
  justify-content: center;
  padding: clamp(38px, 5vw, 72px);
}

/* Diagram primitives */
.diagram-title,
.diagram-kicker,
.diagram-micro,
.blueprint-label,
.axis-label,
.callout-copy {
  fill: var(--ink);
  font-family: var(--font);
}

.diagram-title { font-size: 13px; font-weight: 650; }
.diagram-kicker { font-size: 10px; font-weight: 700; letter-spacing: 1.3px; }
.diagram-micro { font-size: 9px; font-weight: 600; letter-spacing: .2px; }
.light-text { fill: var(--white); }
.inverse { fill: var(--white); }

/* UX diagram */
.diagram-shell {
  fill: rgba(255, 255, 255, .24);
  stroke: var(--ink);
  stroke-width: 2;
}

.diagram-rule,
.flow-link {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
}

.dot.dark { fill: var(--ink); }
.dot.pale { fill: var(--paper); }
.flow-screen > rect:first-child { fill: rgba(255, 255, 255, .42); stroke: var(--ink); stroke-width: 1.5; }
.ui-line { fill: var(--ink); }
.ui-line.faint { opacity: .28; }
.ui-field { fill: rgba(255, 255, 255, .5); stroke: rgba(21, 21, 21, .35); }
.ui-button { fill: var(--paper); stroke: var(--ink); stroke-width: 1; }
.ui-confirm { fill: var(--ink); }
.check-path { fill: none; stroke: var(--white); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.flow-link { stroke-dasharray: 4 4; }
.flow-packet { fill: var(--ink); animation: ux-flow 3.4s var(--ease) infinite; }
.annotation-chip rect { fill: var(--ink); }
.annotation-chip circle { fill: var(--orange); }
.annotation-chip { transform-origin: center; animation: annotation 3.6s ease-in-out infinite; }
.flow-screen { transform-box: fill-box; transform-origin: center; transition: transform .45s var(--ease); }
.service-card:hover .screen-a { transform: translateY(-3px); }
.service-card:hover .screen-b { transform: translateY(-7px); }
.service-card:hover .screen-c { transform: translateY(-11px); }

/* AI diagram */
.pipeline-card rect,
.review-layer rect:first-child { fill: rgba(255, 255, 255, .045); stroke: rgba(255, 255, 255, .32); stroke-width: 1.5; }
.pipeline-lines { fill: none; stroke: rgba(255, 255, 255, .42); stroke-width: 3; stroke-linecap: round; }
.model-core > circle:first-child { fill: var(--orange); }
.model-orbit { fill: none; stroke: rgba(255, 255, 255, .65); stroke-width: 1.5; stroke-dasharray: 4 6; animation: orbit-spin 9s linear infinite; transform-origin: 250px 118px; }
.model-mark { fill: none; stroke: var(--white); stroke-width: 3; }
.pipeline-path,
.review-path { fill: none; stroke: rgba(255, 255, 255, .38); stroke-width: 1.5; stroke-dasharray: 5 5; }
.data-packet { fill: var(--orange); }
.packet-one { animation: packet-left 2.8s var(--ease) infinite; }
.packet-two { animation: packet-right 2.8s .45s var(--ease) infinite; }
.review-layer circle { fill: var(--orange); }
.review-layer path { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.confidence-track { fill: rgba(255, 255, 255, .16) !important; stroke: 0 !important; }
.confidence-value { fill: var(--orange) !important; stroke: 0 !important; transform-origin: left; animation: confidence 3.4s ease-in-out infinite; }

/* Brand diagram */
.brand-board { fill: rgba(255, 255, 255, .55); stroke: var(--ink); stroke-width: 1.7; }
.brand-grid { fill: none; stroke: rgba(21, 21, 21, .16); stroke-width: 1; }
.brand-symbol path { fill: var(--orange); }
.brand-symbol circle { fill: var(--paper); }
.brand-symbol { transform-origin: 116px 98px; animation: symbol-morph 6s ease-in-out infinite; }
.brand-word { fill: var(--ink); font-family: var(--font); font-size: 53px; font-weight: 650; letter-spacing: -4px; }
.brand-aa { fill: var(--ink); font-family: Georgia, serif; font-size: 64px; }
.swatch { stroke: var(--ink); stroke-width: 1; transform-box: fill-box; transform-origin: center; transition: transform .45s var(--ease); }
.swatch.orange { fill: var(--orange); }
.swatch.ink { fill: var(--ink); }
.swatch.paper { fill: var(--paper); }
.service-card:hover .swatch:nth-child(1) { transform: translateY(-7px); }
.service-card:hover .swatch:nth-child(2) { transform: translateY(-12px); }
.service-card:hover .swatch:nth-child(3) { transform: translateY(-7px); }
.brand-measure { fill: none; stroke: var(--ink); stroke-width: 4; stroke-linecap: round; opacity: .25; }

/* Graphic design diagram */
.layout-guides { fill: none; stroke: rgba(21, 21, 21, .18); stroke-width: 1; stroke-dasharray: 4 5; }
.format rect:first-child { fill: rgba(255, 255, 255, .7); stroke: var(--ink); stroke-width: 1.5; }
.format-title { fill: var(--ink); font-family: var(--font); font-size: 28px; font-weight: 700; letter-spacing: -2px; }
.poster-format circle,
.social-format circle { fill: var(--orange); }
.format path { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; }
.format-image { fill: var(--ink) !important; }
.format-caption { fill: var(--ink); font-family: var(--font); font-size: 9px; font-weight: 700; letter-spacing: .7px; }
.format { transform-box: fill-box; transform-origin: center; transition: transform .55s var(--ease); }
.service-card:hover .poster-format { transform: translate(-4px, -5px) rotate(-1deg); }
.service-card:hover .editorial-format { transform: translate(4px, -3px); }
.service-card:hover .social-format { transform: translate(5px, 5px); }

/* Service blueprint */
.blueprint-label { font-size: 8px; font-weight: 700; letter-spacing: .8px; }
.blueprint-rule { fill: none; stroke: rgba(21, 21, 21, .22); stroke-width: 1; stroke-dasharray: 5 5; }
.service-route { fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 470; stroke-dashoffset: 470; transition: stroke-dashoffset 1.6s var(--ease); }
.service-card:hover .service-route { stroke-dashoffset: 0; }
.touchpoint { fill: var(--paper); stroke: var(--ink); stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.touchpoint.t3,
.touchpoint.t5 { fill: var(--orange); }
.touchpoint.t3 { animation: touchpoint-pulse 2.8s ease-in-out infinite; }
.blueprint-note { fill: rgba(255, 255, 255, .65); stroke: var(--ink); stroke-width: 1; }

/* Growth diagram */
.experiment-card rect,
.metric-card rect { fill: rgba(255, 255, 255, .3); stroke: var(--ink); stroke-width: 1.4; }
.experiment-copy { fill: var(--ink); font-family: var(--font); font-size: 11px; font-weight: 600; }
.metric-value { fill: var(--ink); font-family: var(--font); font-size: 27px; font-weight: 650; letter-spacing: -1px; }
.chart-axis { fill: none; stroke: var(--ink); stroke-width: 1.5; }
.baseline { fill: none; stroke: rgba(21, 21, 21, .24); stroke-width: 1; stroke-dasharray: 4 5; }
.experiment-line { fill: none; stroke: var(--ink); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 520; stroke-dashoffset: 520; transition: stroke-dashoffset 1.5s var(--ease); }
.service-card:hover .experiment-line { stroke-dashoffset: 0; }
.chart-point { fill: var(--paper); stroke: var(--ink); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: chart-pulse 3s ease-in-out infinite; }
.chart-point.p2 { animation-delay: -.7s; }
.chart-point.p3 { animation-delay: -1.4s; }
.chart-point.p4 { fill: var(--ink); animation-delay: -2.1s; }

/* Strategy diagram */
.priority-matrix > rect,
.roadmap > rect:first-child { fill: rgba(255, 255, 255, .045); stroke: rgba(255, 255, 255, .3); stroke-width: 1.4; }
.priority-matrix > path:first-of-type { fill: none; stroke: rgba(255, 255, 255, .6); stroke-width: 1.3; }
.matrix-grid { fill: none; stroke: rgba(255, 255, 255, .11); stroke-width: 1; }
.priority-dot { fill: rgba(255, 255, 255, .55); }
.priority-dot.high { fill: var(--orange); }
.priority-dot.low { fill: rgba(255, 255, 255, .25); }
.priority-ring { fill: none; stroke: var(--orange); stroke-width: 1.5; animation: priority-pulse 2.8s ease-out infinite; transform-origin: 109px 118px; }
.roadmap-rule { fill: none; stroke: rgba(255, 255, 255, .13); stroke-width: 1; }
.roadmap-item { fill: rgba(255, 255, 255, .18); transform-origin: left; transition: transform .55s var(--ease); }
.roadmap-item.active { fill: var(--orange); }
.service-card:hover .roadmap-item { transform: scaleX(1.08); }
.strategy-link { fill: none; stroke: var(--orange); stroke-width: 2; stroke-dasharray: 4 4; }

/* Jewellery diagram */
.jewellery-diagram::before { opacity: .4; }
.sketch-line { fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }
.faint-line { opacity: .3; stroke-dasharray: 4 5; }
.note-line,
.measure-line,
.stage-arrow { fill: none; stroke: rgba(21, 21, 21, .44); stroke-width: 1.2; stroke-dasharray: 4 4; }
.technical-ring { fill: none; stroke: var(--ink); stroke-width: 2; }
.technical-ring.inner { stroke: var(--orange); stroke-dasharray: 5 5; animation: orbit-spin 12s linear infinite; transform-origin: 330px 137px; }
.final-shadow { fill: rgba(21, 21, 21, .1); }
.final-ring.outer { fill: none; stroke: var(--ink); stroke-width: 18; }
.final-ring.inner { fill: var(--paper); stroke: var(--orange); stroke-width: 2; }
.setting { fill: var(--orange); stroke: var(--ink); stroke-width: 2; transform-origin: 548px 112px; transition: transform .55s var(--ease); }
.facet { fill: none; stroke: var(--paper); stroke-width: 1.4; }
.jewel-spark { fill: none; stroke: var(--orange); stroke-width: 2; animation: spark 2.1s ease-in-out infinite; transform-origin: 608px 91px; }
.service-card:hover .setting { transform: translateY(-6px); }

/* Horizontal approach */
.approach {
  padding: clamp(78px, 7vw, 110px) 0 64px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.approach h2 {
  font-size: clamp(3rem, 4.45vw, 5.2rem);
}

.approach-heading,
.approach-viewport,
.approach-progress {
  width: var(--shell);
  margin-inline: auto;
}

.approach-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .52fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 56px;
}

.approach .section-label {
  margin-bottom: 32px;
  color: rgba(255, 255, 255, .55);
}

.approach-intro > p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, .6);
  font-size: .91rem;
  line-height: 1.62;
}

.approach-controls {
  display: flex;
  gap: 7px;
  margin-top: 28px;
}

.approach-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .25s var(--ease);
}

.approach-controls button:hover,
.approach-controls button:focus-visible {
  border-color: var(--orange);
  color: var(--ink);
  background: var(--orange);
  outline: 0;
  transform: translateY(-2px);
}

.approach-controls button:disabled {
  opacity: .28;
  cursor: default;
  transform: none;
}

.approach-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-y;
}

.approach-viewport::-webkit-scrollbar {
  display: none;
}

.approach-viewport.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.approach-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-right: max(1px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2));
}

.approach-card {
  display: grid;
  width: min(810px, 76vw);
  min-height: 472px;
  flex: 0 0 auto;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, .88fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  color: var(--ink);
  background: var(--paper);
  scroll-snap-align: start;
  transition: border-color .3s ease, opacity .3s ease, transform .4s var(--ease);
}

.approach-card:not(.is-current) {
  opacity: .72;
}

.approach-card.is-current {
  border-color: rgba(255, 91, 24, .5);
}

.approach-visual {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  background: #ece8df;
}

.approach-visual svg {
  width: 100%;
  overflow: visible;
}

.approach-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 38px;
}

.approach-copy > p:first-child {
  margin: 0 0 auto;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.approach-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.1vw, 3.4rem);
  font-weight: 550;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.approach-copy > p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.58;
}

.approach-progress {
  height: 2px;
  margin-top: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.approach-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .12s linear;
}

/* Approach illustrations */
.canvas { fill: rgba(255, 255, 255, .58); stroke: var(--ink); stroke-width: 1.5; }
.dark-canvas { fill: var(--ink); stroke: rgba(255, 255, 255, .15); }
.decision-node { fill: var(--orange); }
.visual-word { fill: var(--ink); font-family: var(--font); font-size: 11px; font-weight: 750; letter-spacing: .8px; }
.evidence-chip rect { fill: var(--paper); stroke: var(--ink); stroke-width: 1.2; }
.evidence-chip text { fill: var(--ink); font-family: var(--font); font-size: 8.5px; font-weight: 600; }
.evidence-chip { transform-box: fill-box; transform-origin: center; transition: transform .55s var(--ease); }
.approach-card.is-current .chip-a { transform: translate(4px, 3px); }
.approach-card.is-current .chip-b { transform: translate(-4px, 3px); }
.approach-card.is-current .chip-c { transform: translate(4px, -3px); }
.approach-card.is-current .chip-d { transform: translate(-4px, -3px); }
.decision-link { fill: none; stroke: var(--orange); stroke-width: 1.7; stroke-dasharray: 5 5; animation: decision-flow 5s linear infinite; }
.risk-axis { fill: none; stroke: rgba(255, 255, 255, .62); stroke-width: 1.5; }
.axis-label { fill: rgba(255, 255, 255, .6); font-size: 8px; font-weight: 700; letter-spacing: .8px; }
.risk-grid { fill: none; stroke: rgba(255, 255, 255, .1); stroke-width: 1; }
.risk-dot circle { fill: rgba(255, 255, 255, .32); }
.risk-dot text { fill: var(--white); font-family: var(--font); font-size: 11px; font-weight: 700; }
.risk-one circle { fill: var(--orange); }
.risk-focus { fill: none; stroke: var(--orange); stroke-width: 1.5; animation: risk-pulse 2.8s ease-out infinite; transform-origin: 142px 92px; }
.risk-callout { stroke: var(--orange); stroke-width: 1.4; }
.callout-copy { fill: var(--white); font-size: 9px; font-weight: 600; }
.prototype-screen > rect:first-child { fill: var(--white); stroke: var(--ink); stroke-width: 1.5; }
.prototype-screen rect:not(:first-child) { fill: var(--paper-2); }
.proto-c circle { fill: var(--orange); }
.prototype-check { fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.prototype-route { fill: none; stroke: var(--orange); stroke-width: 1.5; stroke-dasharray: 4 4; }
.prototype-packet { fill: var(--ink); animation: proto-flow 3s var(--ease) infinite; }
.prototype-screen { transform-box: fill-box; transform-origin: center; transition: transform .5s var(--ease); }
.approach-card.is-current .proto-b { transform: translateY(-6px); }
.approach-card.is-current .proto-c { transform: translateY(-11px); }
.system-column text { fill: rgba(255, 255, 255, .58); font-family: var(--font); font-size: 8px; font-weight: 700; letter-spacing: .7px; }
.tokens circle:nth-of-type(1) { fill: var(--orange); }
.tokens circle:nth-of-type(2) { fill: var(--white); }
.tokens circle:nth-of-type(3) { fill: rgba(255, 255, 255, .24); }
.tokens rect,
.components rect { fill: rgba(255, 255, 255, .14); stroke: rgba(255, 255, 255, .25); stroke-width: 1; }
.components rect:nth-of-type(2) { fill: var(--orange); stroke: 0; }
.ownership circle { fill: rgba(255, 255, 255, .14); stroke: rgba(255, 255, 255, .42); stroke-width: 1; }
.ownership circle:first-of-type { fill: var(--orange); stroke: 0; }
.ownership-link { fill: none; stroke: rgba(255, 255, 255, .42); stroke-width: 1; }
.system-flow { fill: none; stroke: var(--orange); stroke-width: 2; stroke-dasharray: 5 5; animation: decision-flow 4s linear infinite; }

/* Contact and footer */
.contact {
  position: relative;
  display: grid;
  min-height: min(760px, 90svh);
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .52fr);
  align-items: center;
  gap: 60px;
  padding: clamp(74px, 10vw, 150px) max(32px, calc((100vw - min(1380px, calc(100vw - 64px))) / 2));
  overflow: hidden;
  color: var(--white);
  background: var(--orange) url("assets/orange-field.png") center / cover no-repeat;
  isolation: isolate;
}

.contact::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(233, 72, 0, .28), rgba(255, 181, 128, .07));
  content: "";
}

.contact .section-label {
  margin-bottom: 42px;
}

.contact .section-label::before {
  background: var(--white);
}

.contact h2 {
  max-width: 1040px;
  font-size: clamp(3.8rem, 7.4vw, 8.7rem);
}

.contact-text > p:not(.section-label) {
  max-width: 560px;
  margin: 38px 0 28px;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
}

.email-link {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  gap: 26px;
  padding: 13px 17px 13px 21px;
  border-radius: 16px;
  color: var(--white);
  background: var(--ink);
  font-size: .84rem;
  font-weight: 650;
  transition: color .2s ease, background .2s ease, border-radius .3s var(--ease), transform .3s var(--ease);
}

.email-link b {
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: 400;
  transition: color .2s ease, transform .25s var(--ease);
}

.email-link:hover,
.email-link:focus-visible {
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  transform: translateY(-2px);
}

.email-link:hover b,
.email-link:focus-visible b {
  color: var(--ink);
  transform: translate(3px, -3px);
}

.contact-mark {
  position: relative;
  display: grid;
  width: min(29vw, 350px);
  aspect-ratio: 1;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 36%;
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(14px);
  animation: mark-morph 7s -2s ease-in-out infinite;
}

.contact-mark::before,
.contact-mark::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: inherit;
  content: "";
  animation: ring-pulse 3.8s ease-out infinite;
}

.contact-mark::before { inset: -26px; }
.contact-mark::after { inset: -54px; animation-delay: -1.9s; }

.contact-mark img {
  width: 45%;
  height: 41%;
  object-fit: contain;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 52px 0 26px;
}

.footer-brand .brand-mark {
  background: var(--ink);
}

.site-footer > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: .7rem;
}

.footer-links {
  display: flex;
  gap: 6px;
}

.footer-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  font-size: .65rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease, border-radius .25s var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  outline: 0;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  margin-top: 50px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

/* Reveal and motion */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .78s var(--ease), transform .78s var(--ease);
}

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

.service-grid .reveal:nth-child(2n) {
  transition-delay: .06s;
}

.is-loading .hero-copy,
.is-loading .hero-media {
  opacity: 0;
  transform: translateY(18px);
}

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

@keyframes seal-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes mark-morph {
  0%, 100% { border-radius: 34% 46% 38% 42%; transform: rotate(0); }
  50% { border-radius: 48% 34% 45% 36%; transform: rotate(4deg); }
}

@keyframes ux-flow {
  0%, 15% { transform: translateX(0); opacity: 0; }
  25% { opacity: 1; }
  55% { transform: translateX(157px); opacity: 1; }
  85% { transform: translateX(314px); opacity: 1; }
  100% { transform: translateX(314px); opacity: 0; }
}

@keyframes annotation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

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

@keyframes packet-left {
  0%, 15% { transform: translateX(0); opacity: 0; }
  35% { opacity: 1; }
  75% { transform: translateX(86px); opacity: 1; }
  100% { transform: translateX(86px); opacity: 0; }
}

@keyframes packet-right {
  0%, 15% { transform: translateX(0); opacity: 0; }
  35% { opacity: 1; }
  75% { transform: translateX(38px); opacity: 1; }
  100% { transform: translateX(38px); opacity: 0; }
}

@keyframes confidence {
  0%, 100% { transform: scaleX(.42); }
  50% { transform: scaleX(1); }
}

@keyframes symbol-morph {
  0%, 100% { transform: rotate(0) scale(1); }
  50% { transform: rotate(5deg) scale(1.04); }
}

@keyframes touchpoint-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.22); }
}

@keyframes chart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}

@keyframes priority-pulse {
  0% { opacity: .85; transform: scale(.7); }
  75%, 100% { opacity: 0; transform: scale(1.35); }
}

@keyframes spark {
  0%, 100% { opacity: .25; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.12); }
}

@keyframes decision-flow {
  to { stroke-dashoffset: -120; }
}

@keyframes risk-pulse {
  0% { opacity: .8; transform: scale(.7); }
  80%, 100% { opacity: 0; transform: scale(1.25); }
}

@keyframes proto-flow {
  0%, 12% { opacity: 0; transform: translateX(0); }
  25% { opacity: 1; }
  55% { transform: translateX(149px); opacity: 1; }
  88% { transform: translateX(298px); opacity: 1; }
  100% { transform: translateX(298px); opacity: 0; }
}

@keyframes ring-pulse {
  0% { opacity: .55; transform: scale(.9); }
  78%, 100% { opacity: 0; transform: scale(1.13); }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1080px);
  }

  .hero {
    grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 7vw, 6rem);
  }

  .hero-seal {
    left: -34px;
    width: 98px;
    height: 98px;
  }

  .about {
    grid-template-columns: 1fr .86fr;
  }

  .about-mark {
    position: absolute;
    top: 34px;
    right: 34px;
    width: 104px;
  }

  .service-card:not(.span-12) {
    grid-column: span 6;
  }

  .service-card:nth-child(7) {
    grid-column: span 12;
    min-height: 468px;
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
    grid-template-rows: 1fr;
  }

  .service-card:nth-child(7) .service-visual {
    min-height: 100%;
    border-right: 1px solid rgba(255, 255, 255, .13);
    border-bottom: 0;
  }

  .service-card:nth-child(7) .service-content {
    justify-content: center;
    padding: 46px;
  }

  .approach-card {
    width: min(760px, 82vw);
  }

  .contact {
    padding-inline: 44px;
  }
}

@media (max-width: 900px) {
  .nav-cluster {
    display: none;
  }

  .menu-button,
  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding-top: 138px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    font-size: clamp(4.5rem, 12vw, 7rem);
  }

  .hero-media {
    width: 90%;
    justify-self: end;
  }

  .hero-image-wrap {
    aspect-ratio: 1.25;
  }

  .about {
    min-height: 610px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 50px;
  }

  .about-copy {
    max-width: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr .65fr;
  }

  .service-card,
  .service-card.span-4 {
    min-height: 520px;
  }

  .service-visual,
  .span-4 .service-visual {
    min-height: 262px;
  }

  .card-jewellery,
  .service-card:nth-child(7) {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .card-jewellery .service-visual,
  .service-card:nth-child(7) .service-visual {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(7) .service-visual {
    border-bottom-color: rgba(255, 255, 255, .13);
  }

  .card-jewellery .service-content,
  .service-card:nth-child(7) .service-content {
    padding: 34px;
  }

  .approach-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .approach-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 30px;
  }

  .approach-controls {
    margin-top: 0;
  }

  .approach-card {
    width: min(700px, 88vw);
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .approach-visual {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-copy {
    min-height: 280px;
  }

  .contact {
    min-height: 680px;
    grid-template-columns: 1fr;
  }

  .contact-mark {
    position: absolute;
    right: -42px;
    bottom: -72px;
    width: 290px;
    opacity: .82;
  }

  .contact-text {
    position: relative;
    z-index: 1;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  html {
    scroll-padding-top: 88px;
  }

  .site-header {
    padding: 10px 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 56px;
    padding: 6px 6px 6px 12px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }

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

  .menu-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .mobile-menu {
    padding: 106px 20px 28px;
  }

  .hero {
    gap: 40px;
    padding: 112px 0 40px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 17vw, 5.5rem);
    letter-spacing: -.073em;
  }

  .hero-intro-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 30px;
    padding-top: 20px;
  }

  .round-link {
    width: 96px;
    height: 96px;
    border-radius: 28px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: .92;
    border-radius: 24px;
  }

  .hero-seal {
    top: -22px;
    left: 16px;
    width: 80px;
    height: 80px;
    border-radius: 24px;
  }

  .hero-seal img {
    width: 39px;
    height: 36px;
  }

  .hero-media figcaption {
    right: 16px;
    bottom: 15px;
    left: 16px;
    flex-direction: column;
    gap: 2px;
  }

  .rail-set span {
    padding: 13px 13px;
    font-size: .62rem;
  }

  .about {
    min-height: 650px;
    gap: 40px;
    margin-top: 22px;
    padding: 52px 24px;
    border-radius: 24px;
  }

  .about h2,
  .section-heading h2,
  .approach h2 {
    font-size: clamp(2.9rem, 14vw, 4.45rem);
  }

  .about .section-label {
    margin-bottom: 28px;
  }

  .about-mark {
    top: 22px;
    right: 22px;
    width: 68px;
    opacity: .7;
  }

  .about-mark::before,
  .about-mark::after {
    display: none;
  }

  .about-mark img {
    width: 33px;
    height: 30px;
  }

  .services {
    padding: 78px 0 68px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading .section-label {
    margin-bottom: 2px;
  }

  .service-grid {
    gap: 11px;
  }

  .service-card,
  .service-card.span-4,
  .service-card:not(.span-12),
  .service-card:nth-child(7),
  .service-card.span-12 {
    min-height: 0;
    grid-column: span 12;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    border-radius: 22px;
  }

  .service-visual,
  .span-4 .service-visual,
  .card-jewellery .service-visual,
  .service-card:nth-child(7) .service-visual {
    min-height: 250px;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 21, 21, .12);
  }

  .card-dark .service-visual,
  .service-card:nth-child(7) .service-visual {
    border-bottom-color: rgba(255, 255, 255, .13);
  }

  .service-content,
  .card-jewellery .service-content,
  .service-card:nth-child(7) .service-content {
    display: flex;
    min-height: 280px;
    padding: 27px 25px 29px;
  }

  .service-type {
    margin-bottom: 14px;
  }

  .service-content h3,
  .span-4 .service-content h3 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .service-content ul {
    margin-top: 24px;
  }

  .text-link {
    margin-top: 20px;
  }

  .approach {
    padding: 88px 0 52px;
  }

  .approach-heading {
    gap: 26px;
    margin-bottom: 38px;
  }

  .approach .section-label {
    margin-bottom: 26px;
  }

  .approach-intro {
    display: block;
  }

  .approach-controls {
    margin-top: 22px;
  }

  .approach-controls button {
    width: 43px;
    height: 43px;
    border-radius: 12px;
  }

  .approach-card {
    width: calc(100vw - 32px);
    min-height: 0;
    border-radius: 22px;
  }

  .approach-visual {
    min-height: 240px;
    padding: 14px;
  }

  .approach-copy {
    min-height: 300px;
    padding: 30px 26px;
  }

  .approach-copy h3 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
  }

  .approach-progress {
    margin-top: 22px;
  }

  .contact {
    min-height: 670px;
    padding: 66px 20px;
  }

  .contact .section-label {
    margin-bottom: 32px;
  }

  .contact h2 {
    font-size: clamp(3.35rem, 16vw, 5.8rem);
  }

  .contact-text > p:not(.section-label) {
    margin-top: 28px;
  }

  .contact-mark {
    right: -74px;
    bottom: -48px;
    width: 230px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 28px;
    padding-top: 40px;
  }

  .site-footer > p:not(.copyright) {
    display: none;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-links a:first-child {
    display: none;
  }

  .site-footer .copyright {
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

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

/* Refined corporate system */
:root {
  --shell: min(1320px, calc(100% - 64px));
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 26px;
}

.site-header {
  padding: 12px 0;
}

.header-inner {
  min-height: 56px;
  padding: 6px 7px 6px 14px;
  border-color: rgba(21, 21, 21, .1);
  border-radius: 16px;
  background: rgba(249, 247, 242, .9);
  box-shadow: 0 8px 26px rgba(35, 29, 22, .045);
}

.site-header.is-scrolled {
  padding-top: 7px;
}

.site-header.is-scrolled .header-inner {
  min-height: 52px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(35, 29, 22, .07);
}

.brand {
  gap: 9px;
  font-size: .9rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.brand-mark img {
  width: 21px;
  height: 20px;
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  border-radius: 10px;
  background: var(--orange);
  transform: rotate(5deg);
}

.desktop-nav {
  gap: 0;
  padding-right: 6px;
  border-right: 0;
}

.desktop-nav a {
  padding: 9px 12px;
  border-radius: 9px;
  font-size: .72rem;
  font-weight: 620;
}

.desktop-nav a::after {
  right: 12px;
  bottom: 6px;
  left: 12px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  background: rgba(21, 21, 21, .045);
}

.header-contact {
  min-height: 40px;
  gap: 14px;
  padding: 9px 13px 9px 15px;
  border-radius: 10px;
  font-size: .72rem;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--white);
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.header-contact:hover span,
.header-contact:focus-visible span {
  color: var(--white);
}

.hero {
  min-height: 100svh;
  grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr);
  gap: clamp(44px, 5vw, 76px);
  padding: 112px 0 56px;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(4rem, 6.45vw, 7rem);
  letter-spacing: -.064em;
  line-height: .95;
}

.hero-intro-row {
  max-width: 630px;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
  padding-top: 22px;
}

.hero-intro-row > p {
  font-size: clamp(.98rem, 1.15vw, 1.12rem);
  line-height: 1.55;
}

.round-link {
  display: inline-flex;
  width: auto;
  height: 48px;
  grid-template-columns: none;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 15px 0 18px;
  border-radius: 11px;
  background: var(--ink);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1;
}

.round-link b {
  font-size: 1rem;
}

.round-link:hover,
.round-link:focus-visible {
  border-radius: 11px;
  background: var(--orange);
  transform: translateY(-2px);
}

.round-link:hover b,
.round-link:focus-visible b {
  color: var(--white);
  transform: translate(2px, 2px);
}

.hero-image-wrap {
  aspect-ratio: .96;
  border-radius: 20px;
}

.hero-image-wrap img {
  transform: scale(1.015);
}

.hero-media:hover .hero-image-wrap img {
  filter: saturate(.95) contrast(1.02);
  transform: scale(1.045);
}

.hero-media figcaption {
  right: 20px;
  bottom: 17px;
  left: 20px;
  font-size: .58rem;
}

.capability-rail {
  border-block: 1px solid rgba(255, 255, 255, .12);
}

.rail-track {
  animation-duration: 55s;
}

.rail-set {
  min-height: 55px;
}

.rail-set span {
  width: clamp(164px, 15vw, 218px);
  padding: 16px 12px;
  text-align: center;
  font-size: .65rem;
  font-weight: 620;
  letter-spacing: .06em;
}

.rail-set i {
  width: 4px;
  height: 4px;
  flex: none;
  border-radius: 50%;
  background: var(--orange);
}

.services {
  padding-top: clamp(82px, 7vw, 104px);
}

.section-heading {
  margin-bottom: 50px;
}

.service-grid {
  gap: 12px;
}

.service-card {
  min-height: 514px;
  border-color: rgba(21, 21, 21, .1);
  border-radius: 22px;
  box-shadow: none;
}

.service-card.span-4 {
  min-height: 492px;
}

.service-card:hover {
  box-shadow: 0 18px 42px rgba(43, 34, 23, .09);
  transform: translateY(-3px);
}

.service-card::before {
  background: radial-gradient(360px circle at var(--x, 50%) var(--y, 40%), rgba(255, 91, 24, .08), transparent 62%);
}

.service-visual,
.span-4 .service-visual {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, .35);
  transform: none;
}

.span-4 .service-visual {
  min-height: 242px;
}

.service-visual::before {
  display: none;
}

.card-orange .service-visual {
  background: linear-gradient(150deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0));
}

.card-dark .service-visual {
  background: linear-gradient(150deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
}

.service-content {
  padding: 25px 28px 28px;
}

.service-type {
  margin-bottom: 14px;
}

.service-content h3,
.span-4 .service-content h3 {
  font-size: clamp(2rem, 2.75vw, 3.35rem);
}

.span-4 .service-content h3 {
  font-size: clamp(1.9rem, 2.35vw, 2.8rem);
}

.service-content > p:not(.service-type) {
  margin: 14px 0 20px;
  font-size: .86rem;
  line-height: 1.58;
}

.service-content li {
  padding: 5px 8px;
  font-size: .57rem;
}

/* UX product flow */
.ux-motif {
  isolation: isolate;
}

.ux-window {
  position: absolute;
  width: 48%;
  max-width: 300px;
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1.5px solid rgba(21, 21, 21, .75);
  border-radius: 14px;
  background: #fffaf3;
  box-shadow: 0 18px 38px rgba(78, 27, 4, .12);
  transition: transform .55s var(--ease);
}

.ux-window-back {
  top: 19%;
  left: 15%;
  padding: 18px;
  transform: rotate(-5deg);
}

.ux-window-back span {
  display: block;
  height: 12%;
  margin-bottom: 9%;
  border-radius: 5px;
  background: rgba(21, 21, 21, .12);
}

.ux-window-back span:nth-child(2) { width: 72%; }
.ux-window-back span:nth-child(3) { width: 48%; }

.ux-window-front {
  top: 24%;
  right: 14%;
  z-index: 2;
}

.ux-topbar {
  display: flex;
  gap: 5px;
  height: 22%;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(21, 21, 21, .12);
}

.ux-topbar i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.ux-topbar i:nth-child(2),
.ux-topbar i:nth-child(3) { opacity: .25; }

.ux-body {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.ux-body b,
.ux-body span,
.ux-body em {
  display: block;
  height: 9px;
  border-radius: 5px;
  background: rgba(21, 21, 21, .15);
}

.ux-body b { width: 52%; background: var(--ink); }
.ux-body span:nth-of-type(1) { width: 82%; }
.ux-body span:nth-of-type(2) { width: 63%; }
.ux-body em {
  width: 70%;
  height: 26px;
  margin-top: 7px;
  border-radius: 13px;
  background: var(--orange);
}

.ux-note {
  position: absolute;
  z-index: 3;
  right: 10%;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  font-size: .58rem;
  font-weight: 650;
  box-shadow: 0 10px 20px rgba(21, 21, 21, .14);
  transition: transform .45s var(--ease);
}

.ux-note i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #70d58b;
}

.service-card:hover .ux-window-back { transform: translate(-5px, -3px) rotate(-7deg); }
.service-card:hover .ux-window-front { transform: translate(5px, -6px); }
.service-card:hover .ux-note { transform: translate(4px, -4px); }

/* AI controls */
.ai-motif {
  color: var(--white);
}

.ai-orbit {
  position: absolute;
  width: 174px;
  height: 174px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: transform .9s var(--ease);
}

.ai-orbit::before,
.ai-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: rgba(255, 255, 255, .12);
  content: "";
  transform: translate(-50%, -50%);
}

.ai-orbit::before { width: 230px; height: 1px; }
.ai-orbit::after { width: 1px; height: 230px; }

.ai-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 24px;
  background: var(--orange);
  box-shadow: 0 0 0 10px rgba(255, 91, 24, .12);
  transition: border-radius .5s var(--ease), transform .55s var(--ease);
}

.ai-core img {
  width: 38px;
  height: 35px;
  object-fit: contain;
}

.ai-node {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 91, 24, .16);
  transition: transform .55s var(--ease);
}

.node-a { margin: -150px 0 0 -26px; }
.node-b { margin: 34px 0 0 177px; }
.node-c { margin: 135px 0 0 -126px; }

.ai-input,
.ai-output,
.ai-review {
  position: absolute;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  background: rgba(255, 255, 255, .06);
  font-size: .56rem;
  font-weight: 620;
  letter-spacing: .04em;
  transition: transform .5s var(--ease), border-color .3s ease;
}

.ai-input { left: 8%; bottom: 23%; }
.ai-output { right: 8%; top: 21%; }
.ai-review {
  right: 8%;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ai-review span { color: #78d895; }

.service-card:hover .ai-orbit { transform: rotate(22deg); }
.service-card:hover .ai-core { border-radius: 50%; transform: rotate(-7deg) scale(1.04); }
.service-card:hover .ai-input { transform: translateX(5px); }
.service-card:hover .ai-output { transform: translateX(-5px); }
.service-card:hover .ai-review { border-color: rgba(120, 216, 149, .65); transform: translateY(-4px); }
.service-card:hover .node-a { transform: translate(14px, 7px); }
.service-card:hover .node-b { transform: translate(-10px, 9px); }
.service-card:hover .node-c { transform: translate(8px, -12px); }

/* Brand system */
.brand-motif {
  grid-template-columns: 1fr 80px;
  grid-template-rows: 1fr auto;
  gap: 12px;
}

.brand-card {
  display: grid;
  width: min(100%, 210px);
  aspect-ratio: 1.25;
  align-content: center;
  justify-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(40, 33, 25, .08);
  transform: rotate(-2deg);
  transition: transform .5s var(--ease);
}

.brand-card img { width: 36px; height: 34px; padding: 7px; border-radius: 9px; background: var(--orange); object-fit: contain; }
.brand-card strong { margin-top: 16px; font-size: 1.5rem; letter-spacing: -.05em; }
.brand-card small { margin-top: 2px; color: var(--muted); font-size: .56rem; }

.brand-type {
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 2rem;
  letter-spacing: -.08em;
  transition: transform .5s var(--ease);
}

.brand-colours {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 7px;
}

.brand-colours i {
  width: 42px;
  height: 10px;
  border-radius: 5px;
  background: var(--orange);
  transition: width .45s var(--ease);
}

.brand-colours i:nth-child(2) { background: var(--ink); }
.brand-colours i:nth-child(3) { border: 1px solid var(--line); background: var(--paper); }

.service-card:hover .brand-card { transform: translate(-4px, -4px) rotate(-4deg); }
.service-card:hover .brand-type { transform: translate(4px, -3px) rotate(3deg); }
.service-card:hover .brand-colours i:first-child { width: 64px; }

/* Graphic formats */
.graphic-motif {
  perspective: 800px;
}

.graphic-piece {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, .17);
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 15px 32px rgba(39, 31, 22, .09);
  transition: transform .55s var(--ease);
}

.piece-poster {
  left: 13%;
  width: 34%;
  height: 72%;
  padding: 17px;
  transform: rotate(-4deg);
}

.piece-poster b { display: block; font-size: clamp(1.25rem, 2.2vw, 2.1rem); letter-spacing: -.08em; }
.piece-poster i { display: block; width: 60%; aspect-ratio: 1; margin: 19% auto; border-radius: 50%; background: var(--orange); }
.piece-poster span { display: block; width: 65%; height: 5px; border-radius: 3px; background: var(--ink); }

.piece-editorial {
  top: 17%;
  right: 10%;
  width: 43%;
  height: 30%;
  padding: 13px;
}

.piece-editorial i { float: left; width: 34%; height: 100%; margin-right: 10px; border-radius: 6px; background: var(--ink); }
.piece-editorial span { display: block; width: 52%; height: 5px; margin: 8px 0; border-radius: 3px; background: rgba(21, 21, 21, .18); }

.piece-social {
  right: 6%;
  bottom: 15%;
  display: grid;
  width: 46%;
  height: 32%;
  align-content: center;
  padding: 13px;
  background: var(--orange);
}

.piece-social b { font-size: .74rem; }
.piece-social small { font-size: .55rem; opacity: .65; }

.service-card:hover .piece-poster { transform: translate(-5px, -5px) rotate(-7deg); }
.service-card:hover .piece-editorial { transform: translate(5px, -6px) rotate(2deg); }
.service-card:hover .piece-social { transform: translate(5px, 4px) rotate(-1deg); }

/* Service route */
.service-motif {
  align-content: center;
}

.service-motif svg {
  width: min(100%, 430px);
  overflow: visible;
}

.service-line {
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.5;
  stroke-dasharray: 9 7;
  stroke-dashoffset: 32;
  transition: stroke-dashoffset .8s var(--ease);
}

.service-motif circle {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 5;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .4s var(--ease);
}

.service-layer {
  position: absolute;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  font-size: .54rem;
  font-weight: 650;
}

.layer-customer { top: 14%; left: 9%; }
.layer-team { top: 14%; right: 8%; }
.layer-system { right: 28%; bottom: 12%; }

.service-card:hover .service-line { stroke-dashoffset: 0; }
.service-card:hover .service-motif circle:nth-of-type(3),
.service-card:hover .service-motif circle:nth-of-type(5) { transform: scale(1.28); }

/* Growth evidence */
.growth-motif {
  display: block;
}

.growth-copy {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 8%;
  display: grid;
}

.growth-copy small {
  font-size: .55rem;
  font-weight: 650;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .65;
}

.growth-copy strong { margin-top: 7px; font-size: 1.2rem; letter-spacing: -.04em; }
.growth-copy b { margin-top: -2px; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 560; letter-spacing: -.08em; }

.growth-bars {
  position: absolute;
  right: 8%;
  bottom: 17%;
  left: 46%;
  display: flex;
  height: 64%;
  align-items: end;
  gap: 6%;
}

.growth-bars i {
  width: 11%;
  height: 25%;
  border-radius: 5px 5px 2px 2px;
  background: rgba(21, 21, 21, .16);
  transform-origin: bottom;
  transition: height .7s var(--ease), background .35s ease;
}

.growth-bars i:nth-child(2) { height: 33%; }
.growth-bars i:nth-child(3) { height: 45%; }
.growth-bars i:nth-child(4) { height: 42%; }
.growth-bars i:nth-child(5) { height: 61%; }
.growth-bars i:nth-child(6) { height: 78%; background: var(--ink); }

.growth-motif svg {
  position: absolute;
  z-index: 2;
  right: 6%;
  bottom: 19%;
  width: 50%;
}

.growth-motif svg path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 1s var(--ease);
}

.service-card:hover .growth-motif svg path { stroke-dashoffset: 0; }
.service-card:hover .growth-bars i:nth-child(4) { height: 54%; background: rgba(21, 21, 21, .35); }
.service-card:hover .growth-bars i:nth-child(6) { height: 88%; }

/* Strategy decisions */
.strategy-motif {
  grid-template-columns: minmax(0, 1fr) minmax(150px, .72fr);
  gap: 16px;
  color: var(--white);
}

.strategy-field,
.strategy-queue {
  position: relative;
  width: 100%;
  height: 76%;
  max-height: 220px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}

.strategy-field::before,
.strategy-field::after {
  position: absolute;
  content: "";
  background: rgba(255, 255, 255, .1);
}

.strategy-field::before { top: 50%; right: 14px; left: 14px; height: 1px; }
.strategy-field::after { top: 14px; bottom: 14px; left: 50%; width: 1px; }
.strategy-field small { position: absolute; top: 11px; left: 12px; font-size: .54rem; opacity: .55; }
.strategy-field span { position: absolute; right: 12px; bottom: 9px; font-size: .54rem; opacity: .55; }

.strategy-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 91, 24, .25);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.dot-a { top: 28%; left: 30%; }
.dot-b { top: 57%; left: 65%; width: 10px; height: 10px; opacity: .65; }
.dot-c { top: 70%; left: 25%; width: 8px; height: 8px; opacity: .4; }

.strategy-queue {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 18px;
}

.strategy-queue p {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: .54rem;
  opacity: .68;
}

.strategy-queue i {
  display: block;
  width: 62%;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .13);
  transition: width .55s var(--ease), background .35s ease;
}

.strategy-queue p:first-child i { width: 86%; background: var(--orange); }
.strategy-queue p:last-child i { width: 45%; }

.service-card:hover .dot-a { transform: translate(6px, -5px) scale(1.12); box-shadow: 0 0 0 8px rgba(255, 91, 24, .13); }
.service-card:hover .strategy-queue p:nth-child(2) i { width: 78%; }

/* Jewellery photography */
.card-jewellery {
  min-height: 480px;
  grid-template-columns: minmax(0, 1.42fr) minmax(350px, .58fr);
}

.jewellery-photo {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  background: #1b2526;
}

.jewellery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(.86) contrast(1.04);
  transition: transform 1s var(--ease), filter .6s ease;
}

.jewellery-photo::after {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(180deg, transparent 58%, rgba(12, 18, 19, .42));
  content: "";
}

.jewellery-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 18px;
  left: 22px;
  color: var(--white);
  font-size: .58rem;
  font-weight: 620;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.service-card:hover .jewellery-photo img {
  filter: saturate(.95) contrast(1.04);
  transform: scale(1.035);
}

/* Photo-led approach */
.approach {
  padding: clamp(84px, 7vw, 108px) 0 58px;
}

.approach-heading {
  margin-bottom: 48px;
}

.approach-card {
  width: min(850px, 76vw);
  min-height: 470px;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, .82fr);
  border-radius: 22px;
}

.approach-card:not(.is-current) {
  opacity: .62;
  transform: scale(.985);
}

.approach-card.is-current {
  border-color: rgba(255, 255, 255, .22);
  transform: none;
}

.approach-photo {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #d9d5cc;
}

.approach-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 15, 15, .28));
  content: "";
  pointer-events: none;
}

.approach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.76) contrast(1.03);
  transition: transform 1s var(--ease), filter .55s ease;
}

.approach-card:first-child .approach-photo img { object-position: 60% center; }
.approach-card:nth-child(2) .approach-photo img { object-position: center; }
.approach-card:nth-child(3) .approach-photo img { object-position: 60% center; }
.approach-card:nth-child(4) .approach-photo img { object-position: 55% center; }

.approach-photo figcaption {
  position: absolute;
  z-index: 2;
  bottom: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 8px;
  color: var(--white);
  background: rgba(15, 15, 15, .42);
  backdrop-filter: blur(8px);
  font-size: .58rem;
  font-weight: 650;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.approach-card.is-current .approach-photo img,
.approach-card:hover .approach-photo img {
  filter: saturate(.9) contrast(1.03);
  transform: scale(1.035);
}

.approach-copy {
  padding: 38px 34px;
}

.approach-copy h3 {
  font-size: clamp(2rem, 2.85vw, 3.2rem);
}

.approach-controls button {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.approach-controls button:hover,
.approach-controls button:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1080px);
  }

  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  }

  .service-card:nth-child(7) .service-visual {
    min-height: 100%;
  }

  .card-jewellery {
    grid-template-columns: minmax(0, 1.28fr) minmax(330px, .72fr);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 130px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(4.4rem, 11.5vw, 6.8rem);
  }

  .hero-media {
    width: 92%;
  }

  .hero-image-wrap {
    aspect-ratio: 1.28;
  }

  .service-card,
  .service-card.span-4 {
    min-height: 500px;
  }

  .card-jewellery,
  .service-card:nth-child(7) {
    grid-template-columns: 1fr;
  }

  .card-jewellery .jewellery-photo {
    min-height: 420px;
  }

  .approach-card {
    width: min(700px, 88vw);
    grid-template-columns: 1fr;
    grid-template-rows: 310px auto;
  }

  .approach-photo {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-copy {
    min-height: 255px;
    padding: 32px;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .site-header {
    padding: 9px 0;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 52px;
    padding: 5px 5px 5px 11px;
    border-radius: 14px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
    border-radius: 9px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .hero {
    gap: 34px;
    padding: 104px 0 34px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16.4vw, 5.2rem);
    line-height: .96;
  }

  .hero-intro-row {
    gap: 20px;
    margin-top: 28px;
    padding-top: 18px;
  }

  .round-link {
    width: max-content;
    height: 46px;
    border-radius: 10px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-image-wrap {
    aspect-ratio: .95;
    border-radius: 18px;
  }

  .rail-set {
    min-height: 50px;
  }

  .rail-set span {
    width: 176px;
    padding: 14px 10px;
    font-size: .6rem;
  }

  .services {
    padding-top: 74px;
  }

  .service-card,
  .service-card.span-4,
  .service-card:not(.span-12),
  .service-card:nth-child(7),
  .service-card.span-12 {
    border-radius: 18px;
  }

  .service-visual,
  .span-4 .service-visual,
  .service-card:nth-child(7) .service-visual {
    min-height: 230px;
  }

  .service-content,
  .card-jewellery .service-content,
  .service-card:nth-child(7) .service-content {
    min-height: 260px;
    padding: 25px 23px 27px;
  }

  .service-content h3,
  .span-4 .service-content h3 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .ux-window { width: 52%; }
  .ux-window-back { left: 9%; }
  .ux-window-front { right: 8%; }
  .ux-note { right: 6%; bottom: 8%; }

  .ai-orbit { width: 145px; height: 145px; }
  .ai-orbit::before { width: 190px; }
  .ai-orbit::after { height: 190px; }
  .ai-input { left: 5%; }
  .ai-output,
  .ai-review { right: 5%; }

  .strategy-motif {
    grid-template-columns: minmax(0, 1fr) minmax(110px, .72fr);
    gap: 10px;
  }

  .strategy-field,
  .strategy-queue { height: 72%; }
  .strategy-queue { padding: 12px; }

  .card-jewellery .jewellery-photo {
    min-height: 300px;
    padding: 0;
  }

  .jewellery-photo img {
    object-position: 47% center;
  }

  .approach {
    padding-top: 80px;
  }

  .approach-card {
    width: calc(100vw - 32px);
    grid-template-rows: 230px auto;
    border-radius: 18px;
  }

  .approach-photo {
    min-height: 230px;
  }

  .approach-copy {
    min-height: 290px;
    padding: 28px 24px;
  }

  .approach-copy h3 {
    font-size: clamp(2.05rem, 10vw, 2.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rail-track {
    animation-play-state: paused;
  }
}

/* Premium system refinement */
:root {
  --paper: #f7f4ee;
  --paper-2: #ece8df;
  --white: #fffdf9;
  --ink: #191916;
  --muted: #6d6961;
  --orange: #f45f2a;
  --orange-deep: #df4e1c;
  --peach: #ffd8c0;
  --line: rgba(25, 25, 22, .12);
  --shell: min(1280px, calc(100% - 64px));
  --nav-shell: min(1180px, calc(100% - 32px));
  --section-space: clamp(92px, 8vw, 126px);
  --button-shadow: 0 7px 18px rgba(28, 25, 20, .08);
}

body {
  background: var(--paper);
}

/* Minimal navigation */
.header-inner {
  width: var(--nav-shell);
  min-height: 54px;
  padding: 5px 6px 5px 13px;
  border-color: rgba(25, 25, 22, .09);
  border-radius: 15px;
  background: rgba(250, 248, 243, .9);
  box-shadow: 0 6px 24px rgba(38, 32, 24, .045);
}

.site-header.is-scrolled .header-inner {
  min-height: 50px;
  border-radius: 14px;
  background: rgba(250, 248, 243, .96);
  box-shadow: 0 10px 28px rgba(38, 32, 24, .07);
}

.site-header {
  opacity: 1;
  transform: translateY(0);
  transition: padding .3s var(--ease), opacity .62s var(--ease), transform .62s var(--ease);
}

.is-loading .site-header {
  opacity: 0;
  transform: translateY(-10px);
}

.brand {
  gap: 9px;
  font-size: .88rem;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 33px;
  height: 33px;
  border-radius: 10px;
  box-shadow: 0 5px 12px rgba(196, 66, 18, .14);
}

.brand-mark img {
  width: 20px;
  height: 19px;
  transition: transform .55s var(--ease);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  border-radius: 10px;
  background: var(--orange);
  transform: rotate(4deg);
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  transform: scale(.92) rotate(-4deg);
}

.nav-cluster {
  gap: 9px;
}

.desktop-nav {
  gap: 1px;
  padding-right: 1px;
}

.desktop-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: rgba(25, 25, 22, .7);
  font-size: .7rem;
  font-weight: 620;
  transition: color .2s ease, background .2s ease;
}

.desktop-nav a::after {
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1.5px;
  border-radius: 2px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(25, 25, 22, .035);
}

/* One button language */
.header-contact,
.round-link,
.email-link {
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: var(--button-shadow);
}

.header-contact {
  min-height: 39px;
  gap: 9px;
  padding: 5px 6px 5px 15px;
  border-radius: 999px;
}

.header-contact > span,
.round-link b,
.email-link b {
  display: grid;
  flex: none;
  place-items: center;
  border-radius: 50%;
  font-weight: 500;
}

.header-contact > span {
  width: 27px;
  height: 27px;
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  font-size: .88rem;
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--white);
  background: var(--orange-deep);
  box-shadow: 0 9px 22px rgba(171, 55, 15, .18);
}

.round-link {
  height: 48px;
  gap: 15px;
  padding: 5px 6px 5px 17px;
  border-radius: 999px;
}

.round-link b {
  width: 34px;
  height: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: .92rem;
}

.round-link:hover,
.round-link:focus-visible {
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(171, 55, 15, .18);
}

.round-link:hover b,
.round-link:focus-visible b {
  color: var(--white);
  background: rgba(25, 25, 22, .12);
  transform: translate(2px, 2px);
}

.email-link {
  min-height: 54px;
  gap: 14px;
  padding: 6px 7px 6px 20px;
  border-radius: 999px;
}

.email-link b {
  width: 38px;
  height: 38px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: 1rem;
}

.email-link:hover,
.email-link:focus-visible {
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(30, 24, 17, .18);
}

.email-link:hover b,
.email-link:focus-visible b {
  background: rgba(25, 25, 22, .08);
}

.approach-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: none;
}

.footer-links a {
  padding: 8px 12px;
  border-radius: 999px;
}

.menu-button {
  border-radius: 999px;
}

/* Hero rhythm */
.hero {
  grid-template-columns: minmax(0, .96fr) minmax(470px, 1.04fr);
  gap: clamp(48px, 5.4vw, 82px);
  padding: 116px 0 64px;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(4rem, 6.15vw, 6.75rem);
  line-height: .955;
}

.hero-intro-row {
  max-width: 620px;
  gap: 24px;
  margin-top: 36px;
  padding-top: 21px;
}

.hero-intro-row > p {
  max-width: 450px;
  color: #4f4b45;
  font-size: clamp(.98rem, 1.08vw, 1.08rem);
}

.hero-image-wrap {
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(36, 31, 24, .07);
}

.hero-image-wrap::before {
  border-color: rgba(255, 255, 255, .48);
}

/* Quiet client ticker */
.capability-rail {
  color: var(--ink);
  background: transparent;
  border-block: 1px solid rgba(25, 25, 22, .1);
}

.rail-track {
  animation-duration: 58s;
}

.rail-set {
  min-height: 51px;
}

.rail-set span {
  width: clamp(166px, 14vw, 202px);
  padding: 14px 11px;
  color: var(--ink);
  font-size: .63rem;
  font-weight: 620;
  letter-spacing: .055em;
  opacity: .46;
}

.rail-set i {
  width: 3px;
  height: 3px;
  background: var(--orange);
  opacity: .62;
}

.capability-rail:hover .rail-set span {
  opacity: .63;
}

/* Consistent section spacing */
.about {
  min-height: 520px;
  gap: clamp(38px, 5vw, 70px);
  margin-top: clamp(68px, 6vw, 88px);
  padding: clamp(62px, 5.6vw, 80px);
  border-radius: 28px;
}

.about h2,
.section-heading h2,
.approach h2 {
  font-size: clamp(3rem, 4.9vw, 5.7rem);
  line-height: .96;
}

.about-copy p {
  font-size: clamp(.98rem, 1.12vw, 1.12rem);
  line-height: 1.6;
}

.about-mark {
  width: min(100%, 142px);
  border-radius: 30%;
  animation: logo-float 8s ease-in-out infinite;
}

.about-mark::before { inset: -11px; }
.about-mark::after { inset: -22px; opacity: .6; }

.about-mark img {
  width: 64px;
  height: 59px;
}

.services {
  padding: var(--section-space) 0 clamp(94px, 7vw, 116px);
}

.section-heading {
  gap: 46px;
  margin-bottom: clamp(48px, 4.5vw, 60px);
}

.section-heading .section-label {
  margin-bottom: -7px;
}

.section-heading > p:last-child {
  max-width: 390px;
  font-size: .91rem;
  line-height: 1.66;
}

.service-grid {
  gap: 14px;
}

.service-card {
  min-height: 510px;
  border-color: rgba(25, 25, 22, .095);
  border-radius: 21px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .7) inset;
}

.service-card.card-orange {
  --card-bg: #f3632d;
}

.service-card.card-dark {
  --card-bg: #1b1b18;
}

.service-card:hover {
  border-color: rgba(25, 25, 22, .14);
  box-shadow: 0 20px 46px rgba(43, 34, 23, .1);
  transform: translateY(-3px);
}

.service-card::before {
  background: radial-gradient(360px circle at var(--x, 50%) var(--y, 40%), rgba(244, 95, 42, .08), transparent 64%);
}

.service-visual,
.span-4 .service-visual {
  min-height: 258px;
  padding: 24px;
  border-color: rgba(25, 25, 22, .1);
}

.span-4 .service-visual {
  min-height: 240px;
}

.service-card:not(.card-jewellery) .service-visual::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
  background: radial-gradient(260px circle at var(--x, 50%) var(--y, 45%), rgba(255, 255, 255, .12), transparent 70%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.service-card:hover .service-visual::after {
  opacity: 1;
}

.service-content {
  padding: 26px 28px 29px;
}

.service-type {
  margin-bottom: 13px;
  letter-spacing: .1em;
}

.service-content h3,
.span-4 .service-content h3 {
  font-size: clamp(2rem, 2.65vw, 3.25rem);
  line-height: 1.02;
}

.span-4 .service-content h3 {
  font-size: clamp(1.9rem, 2.25vw, 2.7rem);
}

.service-content > p:not(.service-type) {
  max-width: 560px;
  margin: 14px 0 21px;
  font-size: .85rem;
  line-height: 1.62;
}

.service-content ul {
  gap: 5px;
}

.service-content li {
  padding: 5px 9px;
  background: rgba(255, 255, 255, .08);
}

.card-jewellery {
  min-height: 480px;
  grid-template-columns: minmax(0, 1.38fr) minmax(350px, .62fr);
}

.jewellery-photo img {
  filter: saturate(.82) contrast(1.045);
}

.approach {
  padding: var(--section-space) 0 68px;
}

.approach-heading {
  gap: 64px;
  margin-bottom: 52px;
}

.approach-intro > p {
  line-height: 1.68;
}

.approach-card {
  width: min(830px, 75vw);
  min-height: 462px;
  border-radius: 20px;
}

.approach-card:not(.is-current) {
  opacity: .52;
}

.approach-card.is-current {
  border-color: rgba(244, 95, 42, .5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
}

.approach-copy {
  padding: 38px 34px;
}

.approach-copy h3 {
  font-size: clamp(2rem, 2.75vw, 3.05rem);
}

.approach-copy > p:last-child {
  line-height: 1.62;
}

.approach-photo figcaption {
  border-radius: 999px;
  background: rgba(20, 20, 17, .48);
}

.contact {
  min-height: min(730px, 88svh);
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, .48fr);
  gap: 72px;
  padding-block: clamp(88px, 9vw, 136px);
}

.contact h2 {
  max-width: 940px;
  font-size: clamp(3.7rem, 6.8vw, 8rem);
  line-height: .94;
}

.contact-text > p:not(.section-label) {
  margin: 34px 0 27px;
  line-height: 1.62;
}

.contact-mark {
  width: min(23vw, 300px);
  justify-self: center;
  border-radius: 30%;
  animation: logo-float 8s -2.5s ease-in-out infinite;
}

.contact-mark::before,
.contact-mark::after {
  animation-duration: 5.2s;
}

.site-footer {
  padding: 48px 0 24px;
}

.site-footer .copyright {
  margin-top: 42px;
}

/* Scroll and contextual motion */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(22px) scale(.995);
    transition:
      opacity .82s var(--ease),
      filter .82s var(--ease),
      transform .9s var(--ease);
    will-change: opacity, filter, transform;
  }

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

  .service-grid .reveal:nth-child(2n) {
    transition-delay: .045s;
  }

  .service-card.reveal:not(.is-visible) .service-visual {
    clip-path: inset(0 0 12% 0 round 16px);
    filter: saturate(.72);
  }

  .service-card.reveal .service-visual {
    clip-path: inset(0 round 0);
    transition:
      clip-path 1s var(--ease),
      filter .9s ease,
      transform .38s var(--ease);
  }

  .service-card.is-visible .ux-window-back {
    animation: ux-back-enter .9s .08s var(--ease) backwards;
  }

  .service-card.is-visible .ux-window-front {
    animation: ux-front-enter .9s .16s var(--ease) backwards;
  }

  .service-card.is-visible .ux-note {
    animation: note-enter .7s .42s var(--ease) backwards;
  }

  .service-card.is-visible .ai-orbit {
    animation: ai-calibrate 1.1s .12s var(--ease) backwards;
  }

  .service-card.is-visible .ai-core {
    animation: core-enter .8s .25s var(--ease) backwards;
  }

  .service-card.is-visible .brand-card {
    animation: brand-card-enter .9s .1s var(--ease) backwards;
  }

  .service-card.is-visible .brand-type,
  .service-card.is-visible .brand-colours {
    animation: brand-parts-enter .8s .23s var(--ease) backwards;
  }

  .service-card.is-visible .piece-poster {
    animation: poster-enter .9s .08s var(--ease) backwards;
  }

  .service-card.is-visible .piece-editorial,
  .service-card.is-visible .piece-social {
    animation: format-enter .82s .2s var(--ease) backwards;
  }

  .service-line {
    stroke-dashoffset: 18;
  }

  .service-card.is-visible .service-line {
    animation: route-enter 1.25s .18s var(--ease) backwards;
  }

  .growth-motif svg path {
    stroke-dashoffset: 70;
  }

  .service-card.is-visible .growth-motif svg path {
    animation: growth-enter 1.25s .18s var(--ease) backwards;
  }

  .service-card.is-visible .growth-bars i {
    animation: bar-enter .82s var(--ease) backwards;
  }

  .service-card.is-visible .growth-bars i:nth-child(2) { animation-delay: .07s; }
  .service-card.is-visible .growth-bars i:nth-child(3) { animation-delay: .12s; }
  .service-card.is-visible .growth-bars i:nth-child(4) { animation-delay: .17s; }
  .service-card.is-visible .growth-bars i:nth-child(5) { animation-delay: .22s; }
  .service-card.is-visible .growth-bars i:nth-child(6) { animation-delay: .27s; }

  .service-card.is-visible .strategy-field {
    animation: strategy-enter .9s .1s var(--ease) backwards;
  }

  .service-card.is-visible .strategy-queue {
    animation: strategy-enter .9s .2s var(--ease) backwards;
  }

  .approach-card {
    transition:
      border-color .35s ease,
      box-shadow .4s ease,
      opacity .4s ease,
      transform .55s var(--ease);
  }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-.5deg); }
  50% { transform: translateY(-6px) rotate(.7deg); }
}

@keyframes ux-back-enter {
  from { opacity: 0; transform: translate(-18px, 10px) rotate(-9deg); }
}

@keyframes ux-front-enter {
  from { opacity: 0; transform: translate(18px, 12px) rotate(3deg); }
}

@keyframes note-enter {
  from { opacity: 0; transform: translateY(12px) scale(.9); }
}

@keyframes ai-calibrate {
  from { opacity: 0; transform: rotate(-28deg) scale(.78); }
}

@keyframes core-enter {
  from { opacity: 0; transform: scale(.7) rotate(12deg); }
}

@keyframes brand-card-enter {
  from { opacity: 0; transform: translate(-20px, 18px) rotate(-8deg); }
}

@keyframes brand-parts-enter {
  from { opacity: 0; transform: translate(14px, 12px) scale(.9); }
}

@keyframes poster-enter {
  from { opacity: 0; transform: translate(-18px, 18px) rotate(-10deg); }
}

@keyframes format-enter {
  from { opacity: 0; transform: translate(18px, 14px) scale(.93); }
}

@keyframes route-enter {
  from { stroke-dashoffset: 150; opacity: .28; }
}

@keyframes growth-enter {
  from { stroke-dashoffset: 500; opacity: .25; }
}

@keyframes bar-enter {
  from { opacity: 0; transform: scaleY(.18); }
}

@keyframes strategy-enter {
  from { opacity: 0; transform: translateY(14px) scale(.96); }
}

@media (max-width: 1120px) {
  :root {
    --shell: min(100% - 44px, 1080px);
    --nav-shell: calc(100% - 32px);
  }

  .hero {
    grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr);
  }

  .contact-mark {
    width: min(27vw, 280px);
  }

  .about-mark {
    top: 32px;
    right: 32px;
    width: 104px;
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 126px;
  }

  .hero h1 {
    max-width: 720px;
    font-size: clamp(4.2rem, 11vw, 6.5rem);
  }

  .hero-media {
    width: 92%;
  }

  .section-heading {
    gap: 36px;
  }

  .contact {
    min-height: 680px;
  }

  .approach-card {
    width: min(700px, 88vw);
    grid-template-columns: 1fr;
    grid-template-rows: 310px auto;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
    --nav-shell: calc(100% - 20px);
    --section-space: 78px;
  }

  .site-header {
    padding: 8px 0;
  }

  .header-inner {
    min-height: 50px;
    padding: 5px 5px 5px 10px;
    border-radius: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    gap: 32px;
    padding: 100px 0 36px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15.8vw, 5rem);
  }

  .hero-intro-row {
    gap: 19px;
    margin-top: 27px;
  }

  .round-link {
    height: 46px;
  }

  .round-link b {
    width: 32px;
    height: 32px;
  }

  .rail-set {
    min-height: 47px;
  }

  .rail-set span {
    width: 172px;
    padding: 12px 9px;
    font-size: .59rem;
  }

  .about {
    margin-top: 56px;
    padding: 52px 23px;
    border-radius: 22px;
  }

  .about-mark {
    top: 22px;
    right: 22px;
    width: 70px;
    opacity: .78;
  }

  .about-mark img {
    width: 34px;
    height: 32px;
  }

  .about h2,
  .section-heading h2,
  .approach h2 {
    font-size: clamp(2.8rem, 13vw, 4.25rem);
  }

  .services {
    padding-bottom: 76px;
  }

  .section-heading {
    gap: 22px;
    margin-bottom: 40px;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card,
  .service-card.span-4,
  .service-card:not(.span-12),
  .service-card:nth-child(7),
  .service-card.span-12 {
    border-radius: 18px;
  }

  .service-visual,
  .span-4 .service-visual,
  .service-card:nth-child(7) .service-visual {
    min-height: 228px;
  }

  .service-content,
  .card-jewellery .service-content,
  .service-card:nth-child(7) .service-content {
    min-height: 258px;
    padding: 24px 22px 26px;
  }

  .approach {
    padding-bottom: 50px;
  }

  .approach-card {
    width: calc(100vw - 32px);
    grid-template-rows: 230px auto;
    border-radius: 18px;
  }

  .approach-copy {
    min-height: 284px;
    padding: 27px 23px;
  }

  .contact {
    min-height: 650px;
    padding-block: 68px;
  }

  .contact-mark {
    right: 18px;
    bottom: 28px;
    width: 118px;
    opacity: .5;
  }

  .contact h2 {
    font-size: clamp(3.2rem, 15vw, 5.5rem);
  }

  .email-link {
    min-height: 52px;
  }

  .site-footer {
    padding-top: 38px;
  }
}

/* Mobile-first structure and conversion refinements */
.about {
  min-height: 570px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr) minmax(110px, .24fr);
}

.about-copy {
  align-self: center;
  padding-bottom: 0;
}

.about-lead {
  color: rgba(25, 25, 22, .84);
}

.about-principles {
  margin: 24px 0 0;
  border-top: 1px solid rgba(25, 25, 22, .2);
}

.about-principles > div {
  display: grid;
  grid-template-columns: minmax(112px, .72fr) minmax(0, 1.28fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 25, 22, .18);
}

.about-principles dt,
.about-principles dd {
  margin: 0;
}

.about-principles dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.about-principles dd {
  color: rgba(25, 25, 22, .68);
  font-size: .68rem;
  line-height: 1.48;
}

.about-link {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 5px 6px 5px 14px;
  border: 1px solid rgba(25, 25, 22, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  font-size: .68rem;
  font-weight: 680;
  transition: color .25s ease, background .25s ease, transform .3s var(--ease);
}

.about-link span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  transition: transform .3s var(--ease);
}

.about-link:hover,
.about-link:focus-visible {
  color: var(--white);
  background: var(--ink);
  outline: 0;
  transform: translateY(-2px);
}

.about-link:hover span,
.about-link:focus-visible span {
  color: var(--ink);
  background: var(--orange);
  transform: translateX(2px);
}

.contact {
  padding-inline: max(32px, calc((100vw - 1280px) / 2));
}

.brand-mark {
  position: relative;
}

.brand-mark::after {
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 255, 255, .5) 50%, transparent 62%);
  content: "";
  pointer-events: none;
  transform: translateX(-70%) rotate(12deg);
  transition: transform .72s var(--ease);
}

.brand:hover .brand-mark::after,
.brand:focus-visible .brand-mark::after {
  transform: translateX(70%) rotate(12deg);
}

.approach-viewport.is-wheel-scrolling {
  scroll-behavior: auto;
  scroll-snap-type: none;
}

@media (max-width: 1120px) {
  .about {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
  }

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

@media (max-width: 900px) {
  .contact {
    min-height: 690px;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding-inline: 22px;
  }

  .contact-text {
    width: 100%;
    max-width: 720px;
  }

  .about {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
  }

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

  .about-principles {
    max-width: 620px;
  }
}

@media (max-width: 700px) {
  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 50px;
  }

  .mobile-menu {
    padding: 94px 18px 26px;
    background:
      radial-gradient(420px circle at 100% 0, rgba(244, 95, 42, .12), transparent 62%),
      var(--ink);
  }

  .mobile-menu > div {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
  }

  .mobile-menu a {
    width: 100%;
    padding: 10px 0 11px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: clamp(2.35rem, 12.4vw, 3.2rem);
    letter-spacing: -.055em;
  }

  .mobile-menu p {
    font-size: .72rem;
    line-height: 1.5;
  }

  .hero {
    gap: 30px;
    padding-top: 96px;
  }

  .hero h1 {
    max-width: 345px;
    font-size: clamp(3.1rem, 15.2vw, 4.75rem);
    letter-spacing: -.068em;
    line-height: .97;
  }

  .hero-intro-row {
    margin-top: 25px;
    padding-top: 17px;
  }

  .hero-intro-row > p {
    max-width: 340px;
    font-size: .94rem;
    line-height: 1.55;
  }

  .hero-image-wrap {
    aspect-ratio: 1 / 1.04;
  }

  .about {
    gap: 28px;
    margin-top: 52px;
    padding: 50px 22px 34px;
  }

  .about-intro {
    padding-right: 0;
  }

  .about .section-label {
    margin-bottom: 25px;
  }

  .about h2 {
    max-width: 300px;
    font-size: clamp(2.75rem, 12.6vw, 3.75rem);
    line-height: .98;
  }

  .about-copy {
    width: 100%;
  }

  .about-lead {
    max-width: 315px;
    font-size: .95rem !important;
    line-height: 1.56 !important;
  }

  .about-principles {
    margin-top: 22px;
  }

  .about-principles > div {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
    padding: 13px 0;
  }

  .about-principles dt {
    font-size: .66rem;
  }

  .about-principles dd {
    font-size: .66rem;
    line-height: 1.48;
  }

  .about-link {
    margin-top: 18px;
  }

  .about-mark {
    top: 18px;
    right: 18px;
    width: 64px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2 {
    max-width: 345px;
    font-size: clamp(2.7rem, 12.2vw, 3.8rem);
    line-height: .99;
  }

  .section-heading > p:last-child {
    max-width: 330px;
    font-size: .88rem;
    line-height: 1.58;
  }

  .service-card,
  .service-card.span-4,
  .service-card:not(.span-12),
  .service-card:nth-child(7),
  .service-card.span-12 {
    min-height: 0;
  }

  .service-visual,
  .span-4 .service-visual,
  .service-card:nth-child(7) .service-visual {
    min-height: 212px;
    padding: 16px;
  }

  .service-content,
  .card-jewellery .service-content,
  .service-card:nth-child(7) .service-content {
    min-height: 0;
    padding: 22px 21px 23px;
  }

  .service-content h3,
  .span-4 .service-content h3 {
    font-size: clamp(2rem, 9.4vw, 2.65rem);
  }

  .service-content > p:not(.service-type) {
    margin: 12px 0 18px;
    font-size: .82rem;
    line-height: 1.58;
  }

  .service-content ul {
    margin-top: 18px;
  }

  .card-jewellery .jewellery-photo {
    min-height: 270px;
  }

  .approach-heading {
    gap: 23px;
    margin-bottom: 34px;
  }

  .approach h2 {
    max-width: 345px;
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: .98;
  }

  .approach-intro > p {
    max-width: 340px;
    font-size: .86rem;
    line-height: 1.6;
  }

  .approach-controls {
    margin-top: 18px;
  }

  .approach-card {
    grid-template-rows: 218px auto;
  }

  .approach-photo {
    min-height: 218px;
  }

  .approach-copy {
    min-height: 0;
    padding: 25px 22px 27px;
  }

  .approach-copy h3 {
    font-size: clamp(1.95rem, 9.2vw, 2.55rem);
    line-height: 1.02;
  }

  .approach-copy > p:last-child {
    margin-top: 17px;
    font-size: .82rem;
    line-height: 1.56;
  }

  .contact {
    min-height: 690px;
    padding: 64px 16px 72px;
  }

  .contact .section-label {
    margin-bottom: 28px;
  }

  .contact h2 {
    max-width: 350px;
    font-size: clamp(3.05rem, 14vw, 4.8rem);
    line-height: .96;
  }

  .contact-text > p:not(.section-label) {
    max-width: 335px;
    margin: 26px 0 23px;
    font-size: .93rem;
    line-height: 1.58;
  }

  .contact-mark {
    right: 18px;
    bottom: 24px;
    width: 104px;
    opacity: .42;
  }

  .email-link {
    min-height: 50px;
    padding-left: 17px;
    font-size: .78rem;
  }

  .site-footer {
    gap: 22px;
    padding-top: 34px;
  }

  .footer-links {
    gap: 5px;
  }

  .footer-links a {
    padding: 7px 10px;
    font-size: .61rem;
  }

  .site-footer .copyright {
    margin-top: 22px;
  }
}

@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .reveal {
    filter: none;
    transform: translateY(15px);
    transition: opacity .64s var(--ease), transform .72s var(--ease);
  }

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

  .service-card.reveal:not(.is-visible) .service-visual {
    filter: none;
  }
}

/* Refined mobile navigation */
@media (max-width: 900px) {
  .mobile-menu {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 30px;
    padding: 116px max(22px, calc((100vw - 720px) / 2)) 30px;
    overflow: hidden;
    background:
      radial-gradient(520px circle at 96% 4%, rgba(244, 95, 42, .17), transparent 58%),
      linear-gradient(155deg, #191915 0%, #11110f 72%);
  }

  .mobile-menu::before {
    position: absolute;
    right: -38px;
    bottom: 72px;
    width: min(52vw, 280px);
    aspect-ratio: 1;
    background: url("assets/dab-labs-mark.png") center / contain no-repeat;
    content: "";
    opacity: .055;
    pointer-events: none;
    transform: rotate(-9deg);
  }

  .mobile-menu > .mobile-menu-main,
  .mobile-menu > .mobile-menu-footer {
    position: relative;
    z-index: 1;
    display: block;
  }

  .mobile-menu-label {
    display: block;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, .42);
    font-size: .64rem;
    font-weight: 720;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-menu-links {
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .mobile-menu-links a {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 12px 2px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    font-size: clamp(2.45rem, 8.7vw, 4.5rem);
    letter-spacing: -.06em;
    line-height: .98;
  }

  .mobile-menu-links a i {
    display: grid;
    width: 35px;
    height: 35px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    font-style: normal;
    letter-spacing: 0;
    transition: color .3s ease, border-color .3s ease, background .3s ease, transform .35s var(--ease);
  }

  .mobile-menu-links a:hover i,
  .mobile-menu-links a:focus-visible i {
    border-color: var(--orange);
    color: var(--ink);
    background: var(--orange);
    transform: rotate(45deg);
  }

  .mobile-menu-footer {
    display: flex !important;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .13);
  }

  .mobile-menu-footer > p {
    max-width: 350px;
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .75rem;
    line-height: 1.55;
  }

  .mobile-menu-cta {
    display: inline-flex;
    width: auto !important;
    min-height: 43px;
    flex: 0 0 auto;
    align-items: center;
    gap: 16px;
    padding: 6px 7px 6px 15px !important;
    border: 0 !important;
    border-radius: 999px;
    color: var(--ink);
    background: var(--orange);
    font-size: .72rem !important;
    font-weight: 720;
    letter-spacing: 0 !important;
    line-height: 1 !important;
  }

  .mobile-menu-cta span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--ink);
  }

  .site-header.menu-active .menu-button {
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
  }
}

@media (max-width: 700px) {
  .mobile-menu {
    gap: 22px;
    padding: 92px 18px 22px;
  }

  .mobile-menu::before {
    right: -48px;
    bottom: 88px;
    width: 230px;
  }

  .mobile-menu-label {
    margin-bottom: 15px;
  }

  .mobile-menu-links a {
    padding-block: 11px 12px;
    font-size: clamp(2.4rem, 12.2vw, 3.2rem);
  }

  .mobile-menu-footer {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 15px;
    padding-top: 16px;
  }

  .mobile-menu-footer > p {
    max-width: 190px;
    font-size: .65rem;
  }

  .mobile-menu-cta {
    min-height: 40px;
    padding-left: 13px !important;
    font-size: .66rem !important;
  }
}

@media (max-width: 390px) and (max-height: 720px) {
  .mobile-menu-links a {
    padding-block: 8px 9px;
    font-size: clamp(2rem, 10.8vw, 2.65rem);
  }

  .mobile-menu-footer > p {
    display: none;
  }

  .mobile-menu-footer {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mobile-menu-links a {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .46s ease, transform .56s var(--ease), color .25s ease;
  }

  .mobile-menu.is-open .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu.is-open .mobile-menu-links a:nth-child(1) { transition-delay: .06s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(2) { transition-delay: .1s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(3) { transition-delay: .14s; }
  .mobile-menu.is-open .mobile-menu-links a:nth-child(4) { transition-delay: .18s; }
}

/* Graphic design: one visual system adapted across formats */
.graphic-motif {
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 20%, rgba(244, 95, 42, .12), transparent 36%),
    linear-gradient(145deg, #f8f5ef, #ebe7df);
}

.graphic-motif svg {
  width: min(100%, 430px);
  height: auto;
  overflow: visible;
}

.graphic-board {
  fill: rgba(255, 255, 255, .35);
  stroke: rgba(21, 21, 21, .12);
}

.graphic-grid {
  opacity: .8;
}

.graphic-flow {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.6;
  stroke-dasharray: 5 6;
  animation: graphic-flow 4.5s linear infinite;
}

.graphic-flow-node {
  fill: var(--orange);
  transform-box: fill-box;
  transform-origin: center;
  animation: graphic-node 2.4s var(--ease) infinite;
}

.graphic-flow-node.node-two {
  animation-delay: .7s;
}

.graphic-format {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .65s var(--ease), filter .45s ease;
}

.graphic-format > rect:first-child {
  fill: rgba(255, 255, 255, .94);
  stroke: rgba(21, 21, 21, .42);
  stroke-width: 1.2;
  filter: drop-shadow(0 9px 14px rgba(35, 28, 20, .08));
}

.graphic-overline,
.graphic-caption,
.graphic-palette text {
  fill: rgba(21, 21, 21, .58);
  font-family: var(--font);
  font-size: 7px;
  font-weight: 760;
  letter-spacing: 1px;
}

.graphic-display {
  fill: var(--ink);
  font-family: var(--font);
  font-size: 28px;
  font-weight: 760;
  letter-spacing: -2px;
}

.graphic-display.accent {
  fill: var(--orange);
}

.crop-mark,
.graphic-rule,
.graphic-copy-lines {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
}

.crop-mark {
  stroke-width: 1;
  opacity: .34;
}

.graphic-rule {
  stroke-width: 2;
}

.graphic-copy-lines {
  stroke-width: 2.2;
  opacity: .22;
}

.graphic-orbit {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1;
  stroke-dasharray: 3 4;
  transform-origin: 145px 202px;
  animation: graphic-orbit 9s linear infinite;
}

.graphic-orbit-dot,
.graphic-social-mark {
  fill: var(--orange);
}

.graphic-image-block {
  fill: var(--ink) !important;
  stroke: 0 !important;
  filter: none !important;
}

.graphic-social-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 6;
  opacity: .88;
}

.graphic-social-mark {
  opacity: .85;
}

.graphic-palette circle {
  stroke: rgba(21, 21, 21, .24);
  stroke-width: 1;
}

.graphic-palette circle:nth-child(1) { fill: var(--orange); }
.graphic-palette circle:nth-child(2) { fill: var(--ink); }
.graphic-palette circle:nth-child(3) { fill: var(--white); }

.service-card:hover .graphic-master {
  transform: translate(-4px, -3px) rotate(-1.5deg);
}

.service-card:hover .graphic-editorial {
  transform: translate(5px, -5px) rotate(1.5deg);
}

.service-card:hover .graphic-social {
  transform: translate(5px, 5px) rotate(-1deg);
}

@media (prefers-reduced-motion: no-preference) {
  .service-card.is-visible .graphic-master {
    animation: graphic-master-enter .85s .08s var(--ease) backwards;
  }

  .service-card.is-visible .graphic-editorial {
    animation: graphic-output-enter .78s .2s var(--ease) backwards;
  }

  .service-card.is-visible .graphic-social {
    animation: graphic-output-enter .78s .29s var(--ease) backwards;
  }
}

@keyframes graphic-flow {
  to { stroke-dashoffset: -44; }
}

@keyframes graphic-node {
  0%, 100% { opacity: .28; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.18); }
}

@keyframes graphic-orbit {
  to { transform: rotate(360deg); }
}

@keyframes graphic-master-enter {
  from { opacity: 0; transform: translate(-18px, 14px) rotate(-4deg); }
}

@keyframes graphic-output-enter {
  from { opacity: 0; transform: translate(18px, 10px) scale(.92); }
}
