:root {
  --white: #ffffff;
  --paper: #fbf9ff;
  --ink: #111936;
  --ink-soft: #31405f;
  --muted: #6c7287;
  --line: #e6e2ee;
  --blush: #f8d8e6;
  --blush-soft: #fff3f8;
  --raspberry: #c93d6a;
  --raspberry-dark: #a62d54;
  --lavender: #e7ddff;
  --lavender-strong: #cbbcf6;
  --sage: #bdcba8;
  --navy-tint: #f4f6fb;
  --shadow: 0 24px 70px rgba(17, 25, 54, 0.1);
  --serif: "Libre Bodoni", "Bodoni 72", Didot, Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body.menu-open {
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(17, 25, 54, 0.54);
  backdrop-filter: blur(10px);
}

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

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

main > section {
  scroll-margin-top: var(--header-height);
}

button,
input,
textarea,
select {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  min-height: 88px;
  padding: 18px clamp(22px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(230, 226, 238, 0.72);
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 12px 34px rgba(17, 25, 54, 0.06);
}

.brand {
  display: inline-grid;
  gap: 2px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.brand-text {
  font-size: 0.66rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.desktop-nav a,
.mobile-menu a,
.site-footer a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--raspberry);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-primary {
  background: var(--raspberry);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--raspberry-dark);
}

.button-outline {
  border-color: var(--raspberry);
  color: var(--raspberry);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  background: var(--blush-soft);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--raspberry);
  background: transparent;
  color: var(--raspberry);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 88px 0 auto auto;
  z-index: 19;
  display: none;
  width: min(420px, 100vw);
  padding: 36px clamp(24px, 7vw, 52px);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(100%);
  transition: transform 240ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-stage {
  position: relative;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
  height: calc(100vh - var(--header-height));
  height: calc(100dvh - var(--header-height));
  border-bottom: 1px solid var(--line);
}

.hero::after,
.services::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 78px;
  background-image: radial-gradient(var(--raspberry) 2px, transparent 2.4px);
  background-size: 14px 14px;
  opacity: 0.72;
  pointer-events: none;
}

.hero::after {
  bottom: 8px;
  left: 0;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(72px, 10vw, 132px) clamp(30px, 9vw, 132px);
}

.hero-sticky {
  width: min(100%, 640px);
}

.vertical-note {
  margin: 0;
  color: var(--raspberry);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.hero-copy > .vertical-note {
  position: absolute;
  left: clamp(16px, 3vw, 42px);
  top: 18%;
}

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

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(4.1rem, 7.4vw, 7.5rem);
  font-weight: 500;
  line-height: 0.94;
}

h1 span {
  display: block;
  color: var(--raspberry);
  font-style: italic;
}

.hero h1 span {
  display: inline;
}

.hero h1 .shine-word {
  position: relative;
  display: inline-block;
  color: var(--raspberry);
  cursor: default;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 .shine-word::after {
    content: attr(data-shine);
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
      135deg,
      transparent 0%,
      transparent 43%,
      rgba(255, 248, 252, 0.12) 46%,
      rgba(255, 255, 255, 0.62) 49%,
      rgba(255, 255, 255, 0.92) 50%,
      rgba(255, 255, 255, 0.62) 51%,
      rgba(255, 248, 252, 0.12) 54%,
      transparent 57%,
      transparent 100%
    );
    background-position: 165% 165%;
    background-repeat: no-repeat;
    background-size: 280% 280%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    pointer-events: none;
  }

  .hero h1 .shine-word.is-shining::after {
    animation: hero-text-shine 2900ms linear forwards;
  }
}

@keyframes hero-text-shine {
  0% {
    background-position: 165% 165%;
    opacity: 0;
  }

  9%,
  91% {
    opacity: 0.92;
  }

  100% {
    background-position: -165% -165%;
    opacity: 0;
  }
}

.hero-intro {
  max-width: 470px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--raspberry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link::after,
.service-card a::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.text-link:hover::after,
.service-card a:hover::after {
  width: 42px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border-left: 1px solid var(--line);
  background: var(--navy-tint);
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), transparent 36%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 18%;
  filter: contrast(1.04);
}

@media (max-width: 1500px) and (min-width: 1041px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  }

  .hero-copy {
    padding: clamp(54px, 8vw, 96px) clamp(42px, 5vw, 72px);
  }

  .hero h1 {
    font-size: clamp(3.9rem, 6.1vw, 5.5rem);
  }

  .hero-intro {
    margin-bottom: 28px;
    line-height: 1.65;
  }
}

.section-shell {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(82px, 10vw, 132px) 0;
}

.services::before {
  top: 52px;
  left: -8px;
}

.section-index {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 18px;
  margin-bottom: 34px;
}

.section-index span {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
}

.section-index strong {
  display: inline-block;
  margin-top: 7px;
  color: var(--raspberry);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(260px, 0.46fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: 52px;
  padding-left: min(90px, 10vw);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.55rem, 2.85vw, 3.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.section-heading p,
.editorial-intro p,
.about-copy p,
.contact-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 36px);
  align-items: start;
  padding-left: min(90px, 10vw);
}

.service-card {
  display: grid;
  gap: 18px;
}

.service-card-offset {
  margin-top: 52px;
}

.service-image-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --tilt-scale: 1;
  width: 100%;
  aspect-ratio: 1.22 / 1;
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(17, 25, 54, 0.08);
  perspective: 900px;
  transform-style: preserve-3d;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: box-shadow 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card img {
  aspect-ratio: 1.22 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--paper);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) scale(var(--tilt-scale));
  transform-origin: center;
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: transform;
}

.service-image-tilt.is-tilting img {
  transition-duration: 90ms;
  transition-timing-function: linear;
}

.service-image-tilt:hover,
.service-image-tilt:focus-within {
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.14);
}

.service-card h3 {
  max-width: 360px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}

.service-card p {
  max-width: 320px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
  color: var(--raspberry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quickscan {
  padding: clamp(44px, 6vw, 76px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(120deg, rgba(255, 243, 248, 0.94), rgba(231, 221, 255, 0.46)),
    var(--blush-soft);
}

.quickscan-inner {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) minmax(290px, 0.42fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.quickscan .vertical-note {
  margin: 0;
  color: var(--raspberry);
}

.quickscan-copy {
  max-width: 700px;
}

.quickscan-copy .eyebrow {
  margin-bottom: 16px;
  color: var(--raspberry);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quickscan-copy h2 {
  max-width: 680px;
  margin-bottom: 22px;
}

.quickscan-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.quickscan-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 18px;
  align-items: baseline;
  padding: clamp(28px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 61, 106, 0.18);
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.08);
  backdrop-filter: blur(18px);
}

.quickscan-card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 24px;
  width: 104px;
  height: 1px;
  background: var(--raspberry);
}

.quickscan-card span {
  color: var(--raspberry);
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1;
}

.quickscan-card p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.quickscan-card .button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 10px;
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: minmax(86px, 0.16fr) minmax(260px, 0.38fr) minmax(520px, 1fr);
  gap: clamp(28px, 4vw, 62px);
  align-items: start;
  padding: clamp(72px, 8vw, 110px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(231, 221, 255, 0.92), rgba(248, 216, 230, 0.34)),
    var(--lavender);
  overflow: hidden;
}

.approach .section-index {
  margin: 0;
}

.approach-copy h2 {
  margin-bottom: 0;
}

.step-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step-row article {
  position: relative;
  padding-right: 18px;
}

.step-row article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 33px;
  right: 0;
  width: 42px;
  height: 1px;
  background: var(--ink);
  transform: translateX(55%);
}

.step-row span {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
}

.step-row h3 {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.step-row p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.editorial {
  display: grid;
  grid-template-columns: 70px minmax(390px, 0.45fr) minmax(0, 1fr);
  column-gap: clamp(30px, 3vw, 42px);
  row-gap: 36px;
}

.editorial .section-index {
  margin: 0;
}

.editorial-intro {
  min-width: 0;
  padding-top: 22px;
}

.editorial-intro h2 {
  max-width: 410px;
  margin-bottom: 24px;
  overflow-wrap: normal;
  hyphens: none;
}

.editorial-intro h2 .title-line {
  display: block;
}

.editorial-intro p {
  margin-bottom: 34px;
}

.work-carousel {
  --work-image-height: clamp(340px, 33vw, 382px);
  position: relative;
  min-width: 0;
  display: grid;
  align-self: start;
  gap: 18px;
}

.work-carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-right: clamp(44px, 6vw, 76px);
}

.work-arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(201, 61, 106, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--raspberry);
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(17, 25, 54, 0.08);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.work-arrow:hover,
.work-arrow:focus-visible {
  color: var(--raspberry-dark);
  border-color: rgba(201, 61, 106, 0.7);
  transform: translateY(-2px);
}

.work-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.work-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-track-shell {
  position: relative;
  min-width: 0;
}

.work-track-shell::before,
.work-track-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 18px;
  z-index: 2;
  width: clamp(38px, 5vw, 52px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.work-track-shell::before {
  left: 0;
  background: linear-gradient(90deg, var(--white) 28%, rgba(255, 255, 255, 0));
}

.work-track-shell::after {
  right: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--white) 72%);
}

.work-carousel.has-left-feather .work-track-shell::before,
.work-carousel.has-right-feather .work-track-shell::after {
  opacity: 1;
}

.work-track {
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 2.2vw, 24px);
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 6px clamp(56px, 7vw, 82px) 24px 0;
  scroll-behavior: smooth;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.work-track::-webkit-scrollbar {
  display: none;
}

.work-card {
  flex: 0 0 clamp(246px, 20vw, 270px);
  scroll-snap-align: start;
}

.work-card-wide {
  flex-basis: clamp(360px, 29.4vw, 376px);
}

.work-card-site {
  flex-basis: clamp(390px, 34vw, 440px);
}

.work-card-book {
  flex-basis: clamp(238px, 19vw, 270px);
}

.work-card a {
  display: grid;
  gap: 16px;
  outline-offset: 8px;
}

.work-card img {
  width: 100%;
  height: var(--work-image-height);
  background: var(--paper);
  box-shadow: 0 18px 52px rgba(17, 25, 54, 0.08);
  object-fit: cover;
  object-position: top center;
  transition: box-shadow 260ms ease, filter 260ms ease, transform 260ms ease;
}

.work-card a:hover img,
.work-card a:focus-visible img {
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.14);
  filter: saturate(1.04);
  transform: translateY(-4px);
}

.work-card span {
  display: block;
}

.work-card p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.work-card h3 {
  margin-bottom: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-track.is-moving-next .work-card {
  animation: work-card-next 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.work-track.is-moving-prev .work-card {
  animation: work-card-prev 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes work-card-next {
  0% {
    transform: translateX(0);
  }

  38% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes work-card-prev {
  0% {
    transform: translateX(0);
  }

  38% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}

.testimonials {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(280px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(64px, 7.5vw, 112px);
  row-gap: 34px;
  align-items: start;
  padding: clamp(70px, 7.5vw, 108px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(201, 61, 106, 0.18), rgba(231, 221, 255, 0.1) 42%, rgba(17, 25, 54, 0) 72%),
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.testimonials::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: clamp(28px, 4vw, 54px);
  width: min(420px, 30vw);
  height: 1px;
  background: rgba(248, 216, 230, 0.8);
}

.testimonials .section-index {
  margin: 0;
}

.testimonial-intro {
  min-width: 0;
  padding-top: 12px;
}

.testimonial-intro .eyebrow {
  margin-bottom: 18px;
  color: var(--blush);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testimonial-intro h2 {
  max-width: 440px;
  margin-bottom: 24px;
  color: var(--white);
}

.testimonial-intro p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.testimonial-shell {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.testimonial-arrow {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(248, 216, 230, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--blush);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  border-color: rgba(248, 216, 230, 0.78);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.testimonial-count {
  min-width: 70px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-align: center;
}

.testimonial-stage {
  min-height: clamp(250px, 20vw, 310px);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-stage:active {
  cursor: grabbing;
}

.testimonial-card {
  position: relative;
  min-height: clamp(250px, 20vw, 310px);
  margin: 0;
  padding: clamp(30px, 4.2vw, 54px);
  border: 1px solid rgba(248, 216, 230, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  animation: testimonial-enter 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonial-card[hidden] {
  display: none;
}

.testimonial-card::before {
  content: "”";
  position: absolute;
  right: clamp(22px, 4vw, 52px);
  bottom: clamp(8px, 2vw, 28px);
  color: rgba(248, 216, 230, 0.16);
  font-family: var(--serif);
  font-size: clamp(8rem, 16vw, 15rem);
  line-height: 0.68;
  pointer-events: none;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
}

.testimonial-card blockquote p {
  max-width: 720px;
  margin-bottom: clamp(20px, 2.2vw, 28px);
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 500;
  line-height: 1.82;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--blush);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.testimonial-card figcaption::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.testimonial-card cite {
  font-style: normal;
}

.testimonial-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.testimonial-tab {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(248, 216, 230, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.testimonial-tab:hover,
.testimonial-tab:focus-visible {
  border-color: rgba(248, 216, 230, 0.62);
  color: var(--white);
  transform: translateY(-2px);
}

.testimonial-tab.is-active,
.testimonial-tab[aria-selected="true"] {
  border-color: rgba(248, 216, 230, 0.78);
  background: rgba(248, 216, 230, 0.13);
  color: var(--white);
}

.testimonial-tab span {
  color: var(--blush);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
}

.testimonial-tab strong {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

@keyframes testimonial-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.case-lightbox {
  --case-modal-height: min(820px, calc(100dvh - 48px));
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 60;
  display: none;
  width: min(1080px, calc(100vw - 48px));
  height: var(--case-modal-height);
  max-height: var(--case-modal-height);
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  transform: translate(-50%, -50%);
}

.case-lightbox[open],
.case-lightbox.is-open {
  display: block;
}

.case-lightbox::backdrop {
  background: rgba(17, 25, 54, 0.54);
  backdrop-filter: blur(10px);
}

.case-lightbox-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 0.74fr);
  height: var(--case-modal-height);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 28px 90px rgba(17, 25, 54, 0.24);
}

.case-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(201, 61, 106, 0.35);
  background: rgba(255, 255, 255, 0.82);
  color: var(--raspberry);
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-lightbox-media {
  background: var(--navy-tint);
  min-height: 0;
  overflow: hidden;
}

.case-lightbox-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.case-lightbox-cover {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(231, 221, 255, 0.44), rgba(248, 216, 230, 0.42)),
    var(--paper);
}

.case-lightbox-cover img {
  width: min(100%, 430px);
  height: auto;
  max-height: calc(var(--case-modal-height) - clamp(36px, 6vw, 64px));
  object-fit: contain;
  box-shadow: 0 22px 64px rgba(17, 25, 54, 0.18);
}

.case-lightbox-screen {
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(231, 221, 255, 0.34), rgba(248, 216, 230, 0.28)),
    var(--paper);
}

.case-lightbox-screen img {
  width: 100%;
  height: auto;
  max-height: calc(var(--case-modal-height) - clamp(36px, 6vw, 68px));
  object-fit: contain;
  box-shadow: 0 22px 64px rgba(17, 25, 54, 0.16);
}

.case-lightbox-wide .case-lightbox-panel {
  grid-template-columns: minmax(340px, 1.08fr) minmax(280px, 0.66fr);
}

.case-lightbox-wide .case-lightbox-media {
  display: grid;
  align-content: center;
}

.case-lightbox-content {
  display: grid;
  align-content: center;
  gap: clamp(12px, 1.35vw, 20px);
  min-height: 0;
  padding: clamp(34px, 4vw, 58px);
  padding-top: clamp(58px, 4.8vw, 72px);
  background:
    linear-gradient(135deg, rgba(248, 216, 230, 0.66), rgba(231, 221, 255, 0.5)),
    var(--blush-soft);
}

.case-category {
  margin-bottom: 0;
  color: var(--raspberry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-lightbox-content h3 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(1.95rem, 3vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
}

.case-lightbox-content p:not(.case-category) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1.08vw, 1rem);
  line-height: 1.62;
}

.case-lightbox-content .button {
  width: fit-content;
  margin-top: 2px;
}

@media (max-height: 760px) and (min-width: 761px) {
  .case-lightbox-content {
    gap: 12px;
    padding: 38px clamp(32px, 4vw, 52px) 34px;
    padding-top: 60px;
  }

  .case-lightbox-content h3 {
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1;
  }

  .case-lightbox-content p:not(.case-category) {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.72fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: stretch;
  background: var(--ink);
  color: var(--white);
}

.about-panel {
  position: relative;
  min-height: 430px;
  padding: clamp(58px, 8vw, 104px) clamp(28px, 8vw, 120px);
  background:
    linear-gradient(135deg, rgba(201, 61, 106, 0.18), rgba(231, 221, 255, 0.12)),
    var(--ink);
}

.about-panel .vertical-note {
  position: absolute;
  left: clamp(18px, 4vw, 54px);
  top: 70px;
  color: var(--blush);
}

.about-panel h2 {
  max-width: 760px;
  margin: 0 0 0 min(90px, 10vw);
  color: var(--white);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: clamp(16px, 1.8vw, 22px);
  padding: clamp(46px, 7vw, 86px) clamp(28px, 6vw, 78px) clamp(46px, 7vw, 86px) 0;
}

.about-copy p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.96rem, 0.9vw, 1.02rem);
}

.about-copy p:first-child {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.04rem, 1.05vw, 1.14rem);
}

.about-copy p:last-child {
  color: var(--blush);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  font-weight: 700;
  line-height: 1.03;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.5fr);
  gap: clamp(34px, 7vw, 98px);
  align-items: center;
  padding: clamp(72px, 9vw, 118px) max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, var(--blush-soft), rgba(231, 221, 255, 0.42) 68%, rgba(189, 203, 168, 0.22)),
    var(--blush-soft);
}

.contact h2 {
  max-width: 720px;
  margin-bottom: 20px;
}

.contact-copy p {
  margin-bottom: 30px;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(201, 61, 106, 0.16);
  box-shadow: 0 22px 62px rgba(17, 25, 54, 0.08);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(231, 221, 255, 0.9);
  pointer-events: none;
}

.form-hidden {
  display: none;
}

.form-row {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.form-row label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 25, 54, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.5;
  outline: 0;
  padding: 12px 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-row textarea {
  min-height: 128px;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  background: var(--white);
  border-color: var(--raspberry);
  box-shadow: 0 10px 0 -9px rgba(201, 61, 106, 0.34);
}

.form-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  padding-top: 6px;
}

.form-success {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--raspberry);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.6;
}

.form-success[hidden] {
  display: none;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(22px, 5vw, 64px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

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

.site-footer div {
  display: flex;
  gap: 28px;
}

.footer-links {
  align-items: center;
}

.site-footer .footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--raspberry);
  transition: color 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--raspberry-dark);
  transform: translateY(-2px);
}

.social-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.privacy-main {
  background:
    linear-gradient(90deg, var(--blush-soft), rgba(231, 221, 255, 0.36) 64%, rgba(189, 203, 168, 0.18)),
    var(--blush-soft);
}

.privacy-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(86px, 11vw, 146px) 0 clamp(48px, 6vw, 76px);
}

.privacy-hero h1 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: clamp(3.2rem, 5.5vw, 5.35rem);
  overflow-wrap: normal;
}

.privacy-hero p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.78;
}

.privacy-content {
  width: var(--container);
  margin: 0 auto;
  padding: 0 0 clamp(76px, 9vw, 118px);
}

.privacy-card {
  display: grid;
  gap: 34px;
  max-width: 920px;
  padding: clamp(32px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(201, 61, 106, 0.14);
  box-shadow: 0 24px 70px rgba(17, 25, 54, 0.08);
}

.privacy-section {
  display: grid;
  gap: 12px;
}

.privacy-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
}

.privacy-section p,
.privacy-section li {
  color: var(--ink-soft);
  line-height: 1.78;
}

.privacy-section p,
.privacy-section ul {
  margin: 0;
}

.privacy-section a {
  color: var(--raspberry);
  font-weight: 700;
}

.privacy-section ul {
  padding-left: 20px;
}

@media (max-width: 1040px) {
  .hero {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
  }

  .hero-stage {
    height: auto;
    min-height: 0;
  }

  .hero-copy {
    position: relative;
    top: auto;
    min-height: 680px;
  }

  .hero-sticky {
    position: static;
  }

  .hero-media {
    min-height: 560px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .service-grid {
    padding-left: 0;
  }

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

  .quickscan-inner {
    grid-template-columns: 78px 1fr;
  }

  .quickscan-card {
    grid-column: 2;
    max-width: 520px;
  }

  .approach {
    grid-template-columns: 78px 1fr;
  }

  .step-row {
    grid-column: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial {
    grid-template-columns: 76px 1fr;
  }

  .work-carousel {
    grid-column: 2;
  }

  .testimonials {
    grid-template-columns: 76px 1fr;
  }

  .testimonial-intro,
  .testimonial-shell {
    grid-column: 2;
  }

  .testimonial-intro h2,
  .testimonial-intro p:not(.eyebrow) {
    max-width: 680px;
  }

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

  .about-copy {
    padding: 0 clamp(28px, 8vw, 120px) clamp(56px, 8vw, 90px);
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1180px);
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    min-height: 74px;
    padding: 14px;
  }

  .site-header.is-scrolled {
    min-height: 68px;
  }

  .brand-mark {
    font-size: 1.75rem;
  }

  .button-outline {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .menu-button {
    display: inline-grid;
    width: 44px;
    height: 44px;
  }

  .mobile-menu {
    display: grid;
    inset: 74px 0 auto 0;
    width: 100vw;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    width: 150px;
    height: 56px;
    bottom: -28px;
  }

  .hero-copy {
    min-height: auto;
    padding: 86px 20px 58px;
  }

  .hero-copy > .vertical-note {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14.5vw, 3.85rem);
  }

  h1 span {
    font-size: 0.92em;
  }

  .hero-intro {
    font-size: 0.96rem;
  }

  .hero-links {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-media {
    min-height: 420px;
  }

  .section-shell {
    padding: 76px 0;
  }

  .section-heading,
  .service-grid,
  .approach,
  .editorial,
  .testimonials,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-index {
    margin-bottom: 28px;
  }

  .services::before {
    display: none;
  }

  .service-grid {
    gap: 44px;
  }

  .service-card-offset {
    margin-top: 0;
  }

  .quickscan {
    padding: 68px 20px;
  }

  .quickscan-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .quickscan .vertical-note {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .quickscan-card {
    grid-column: auto;
    max-width: none;
  }

  .quickscan-card .button {
    width: 100%;
    justify-content: center;
  }

  .approach {
    padding: 72px 20px;
  }

  .approach .section-index,
  .step-row,
  .work-carousel {
    grid-column: auto;
  }

  .step-row {
    grid-template-columns: 1fr;
  }

  .step-row article:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: -12px;
    width: 54px;
    transform: none;
  }

  .editorial {
    gap: 28px;
  }

  .testimonials {
    padding: 76px 20px;
    gap: 28px;
  }

  .testimonials::after {
    right: 20px;
    width: 156px;
  }

  .testimonials .section-index {
    margin-bottom: 0;
  }

  .testimonials .section-index strong {
    writing-mode: horizontal-tb;
  }

  .testimonial-intro,
  .testimonial-shell {
    grid-column: auto;
  }

  .testimonial-controls {
    justify-content: flex-start;
  }

  .testimonial-stage,
  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card {
    padding: 26px 22px 32px;
  }

  .testimonial-card blockquote p {
    font-size: 1rem;
    line-height: 1.78;
  }

  .testimonial-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-tabs {
    grid-template-columns: 1fr;
  }

  .testimonial-tab {
    min-height: 68px;
  }

  .work-carousel {
    gap: 16px;
  }

  .work-carousel-controls {
    justify-content: flex-start;
    padding-right: 0;
  }

  .work-track {
    gap: 20px;
    padding-right: 78px;
  }

  .work-track-shell::after {
    width: 74px;
  }

  .work-card,
  .work-card-wide {
    flex-basis: min(78vw, 340px);
  }

  .work-card-site {
    flex-basis: min(84vw, 370px);
  }

  .work-card-book {
    flex-basis: min(68vw, 270px);
  }

  .case-lightbox {
    --case-modal-height: calc(100dvh - 24px);
    width: calc(100vw - 24px);
    height: auto;
    max-height: var(--case-modal-height);
  }

  .case-lightbox-panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    max-height: var(--case-modal-height);
    overflow: auto;
    overscroll-behavior: contain;
  }

  .case-lightbox-wide .case-lightbox-panel {
    grid-template-columns: 1fr;
  }

  .case-lightbox-media {
    max-height: 44dvh;
  }

  .case-lightbox-content {
    align-content: start;
    gap: 14px;
    padding: 68px 22px 30px;
  }

  .case-category {
    font-size: 0.62rem;
    line-height: 1.35;
  }

  .case-lightbox-content h3 {
    font-size: clamp(1.95rem, 9vw, 2.45rem);
    line-height: 1.02;
  }

  .case-lightbox-content p:not(.case-category) {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .case-lightbox-cover img {
    max-height: calc(44dvh - 36px);
  }

  .case-lightbox-screen img {
    max-height: calc(44dvh - 36px);
  }

  .case-lightbox-content .button {
    width: 100%;
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.64rem;
  }

  .about-panel {
    min-height: auto;
    padding: 70px 20px;
  }

  .about-panel .vertical-note {
    display: none;
  }

  .about-panel h2 {
    margin-left: 0;
  }

  .about-copy {
    padding: 0 20px 64px;
  }

  .contact {
    padding: 104px 20px 72px;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .contact-form::before {
    inset: 10px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 20px;
  }

  .site-footer div {
    flex-wrap: wrap;
  }

  .footer-links {
    gap: 20px;
  }

  .privacy-hero,
  .privacy-content {
    width: min(100vw - 40px, 1180px);
  }

  .privacy-hero {
    padding-top: 72px;
  }

  .privacy-hero h1 {
    font-size: clamp(2.35rem, 10vw, 2.8rem);
    overflow-wrap: anywhere;
  }

  .privacy-card {
    padding: 28px 20px;
  }
}

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