:root {
  --paper: #ffffff;
  --ink: #11130f;
  --stone: #77786f;
  --stone-2: #a6a399;
  --line: rgba(17, 19, 15, .14);
  --line-strong: rgba(17, 19, 15, .32);
  --moss: #283629;
  --clay: #9e5c3d;
  --mist: #eef2ee;
  --radius: 8px;
  --gutter: clamp(20px, 4vw, 64px);
  --container: min(1220px, calc(100vw - (var(--gutter) * 2)));
  --serif: "fraunces-variable", Georgia, serif;
  --sans: "DM Sans", "freight-sans-pro", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --brand-weight: 263;
  --brand-variation: "SOFT" 75, "WONK" 1, "opsz" 88, "wght" 263;
  --section-heading-size: clamp(31px, 4.35vw, 60px);
  --section-heading-line-height: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .22;
  background:
    linear-gradient(90deg, transparent calc(25% - 1px), rgba(17, 19, 15, .045) 25%, transparent calc(25% + 1px)),
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17, 19, 15, .035) 50%, transparent calc(50% + 1px)),
    linear-gradient(90deg, transparent calc(75% - 1px), rgba(17, 19, 15, .045) 75%, transparent calc(75% + 1px));
}

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

img {
  height: auto;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 560;
  font-variation-settings: "opsz" 92, "wght" 560, "SOFT" 20, "WONK" 0;
  letter-spacing: 0;
  line-height: .94;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  transform: translateY(-100%);
  transition: transform .34s ease;
}

body.is-scrolled .site-header,
.site-header:focus-within {
  transform: translateY(0);
}

.brand {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: var(--brand-weight);
  font-variation-settings: var(--brand-variation);
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 40px);
  color: rgba(17, 19, 15, .58);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  letter-spacing: 0;
}

.nav a:not(.nav-cta) {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}

.nav a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 20px;
  color: var(--paper);
  background: var(--ink);
  font-size: clamp(13px, .95vw, 15px);
  transition: transform .2s ease, background .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.opening {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--moss);
}

section[id] {
  scroll-margin-top: 96px;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  pointer-events: none;
}

.hero-media img,
.hero-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.opening .hero-media img {
  width: 100%;
  height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.03);
  transform: scale(1.03);
  animation: heroBreath 16s ease-in-out infinite alternate;
}

.hero-media iframe {
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.7778vh;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@keyframes heroBreath {
  from {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.075) translate3d(0, -10px, 0);
  }
}

.opening::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 12, 8, .62), transparent);
}

.hero-brand {
  position: fixed;
  top: 25px;
  left: var(--gutter);
  z-index: 35;
  width: fit-content;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: var(--brand-weight);
  font-variation-settings: var(--brand-variation);
  line-height: 1;
  opacity: 0;
  transform: translateY(-10px);
  text-shadow: 0 1px 22px rgba(0, 0, 0, .24);
  transition:
    opacity .28s ease,
    transform .34s ease,
    color .28s ease;
}

body.hero-copy-visible:not(.is-scrolled) .hero-brand {
  opacity: 1;
  transform: translateY(0);
}

body.is-scrolled .hero-brand {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.opening-copy {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(58px, 10vh, 118px);
  z-index: 1;
  max-width: 1120px;
  color: var(--paper);
}

.opening-eyebrow {
  max-width: min(100%, 760px);
  margin-bottom: clamp(18px, 2vw, 30px);
  color: rgba(255, 255, 255, .72);
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 750;
  letter-spacing: .02em;
  line-height: 1.45;
}

.opening-copy h1 {
  font-size: clamp(46px, 7.2vw, 112px);
}

.opening-eyebrow,
.opening-copy span,
.opening-copy p {
  display: block;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s ease, transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.opening-eyebrow {
  transition-delay: .08s;
}

.opening-copy span {
  width: fit-content;
}

.hero-wifi-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 36px);
  z-index: 2;
  display: block;
  width: fit-content;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  opacity: 0;
  transform: translate(-50%, 22px);
  transition:
    opacity .55s ease,
    transform .65s cubic-bezier(.22, 1, .36, 1);
}

.hero-wifi-hint:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 6px;
  border-radius: 6px;
}

.hero-wifi-hint .hero-wifi {
  display: block;
  width: clamp(52px, 6.8vw, 76px);
  height: clamp(52px, 6.8vw, 76px);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-wifi {
  opacity: 0;
}

.hero-wifi-dot,
.hero-wifi-ring {
  opacity: 0;
}

.hero-wifi-ring {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

body.hero-wifi-visible .hero-wifi-hint {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.hero-wifi-visible .hero-wifi {
  opacity: 1;
  animation:
    wifi-hint-pop .55s cubic-bezier(.22, 1, .36, 1) forwards,
    wifi-hint-float 2.6s ease-in-out 1s infinite;
}

body.hero-wifi-visible .hero-wifi-dot {
  animation:
    wifi-dot-in .3s cubic-bezier(.2, .9, .2, 1) forwards,
    wifi-dot-pulse 2.4s ease-in-out 1.1s infinite;
}

body.hero-wifi-visible .hero-wifi-ring-1 {
  animation:
    wifi-ring-in .48s cubic-bezier(.22, 1, .36, 1) .18s forwards,
    wifi-ring-pulse 2.5s ease-in-out 1.15s infinite;
}

body.hero-wifi-visible .hero-wifi-ring-2 {
  animation:
    wifi-ring-in .52s cubic-bezier(.22, 1, .36, 1) .36s forwards,
    wifi-ring-pulse 2.5s ease-in-out 1.35s infinite;
}

body.hero-wifi-visible .hero-wifi-ring-3 {
  animation:
    wifi-ring-in .58s cubic-bezier(.22, 1, .36, 1) .54s forwards,
    wifi-ring-pulse 2.5s ease-in-out 1.55s infinite;
}

.opening-copy span:nth-child(2) {
  transition-delay: .28s;
}

.opening-copy>p:not(.opening-eyebrow) {
  margin-top: clamp(16px, 1.8vw, 26px);
  color: rgba(255, 255, 255, .76);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 600;
  transition-delay: 1.1s;
}

body.hero-copy-visible .opening-copy span,
body.hero-copy-visible .opening-copy p {
  opacity: 1;
  transform: translateY(0);
}

body.hero-copy-visible .opening-eyebrow {
  opacity: 1;
  transform: translateY(0);
}

@keyframes wifi-dot-in {
  from {
    opacity: 0;
    transform: scale(.3);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wifi-ring-in {
  from {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes wifi-hint-pop {
  from {
    transform: scale(.82);
    opacity: .35;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes wifi-hint-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

@keyframes wifi-dot-pulse {
  0%,
  100% {
    opacity: .78;
  }

  50% {
    opacity: 1;
  }
}

@keyframes wifi-ring-pulse {
  0%,
  100% {
    opacity: .68;
  }

  50% {
    opacity: 1;
  }
}

.editorial-pad {
  padding: clamp(96px, 13vw, 190px) var(--gutter);
}

.measure-wide,
.measure,
.section-intro,
.pricing-head {
  width: var(--container);
  margin-inline: auto;
}

.measure {
  max-width: 980px;
}

.nature-space {
  min-height: 56svh;
  display: grid;
  align-items: center;
  padding-bottom: clamp(40px, 6vw, 86px);
}

.nature-space .person-kicker {
  max-width: none;
  margin-bottom: clamp(20px, 2.5vw, 34px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.nature-space h2,
.person-copy h2,
.craft-head h2,
.section-intro h2,
.pricing h2,
.testimonial-head h2,
.video-caption,
.contact h2 {
  font-size: var(--section-heading-size);
  line-height: var(--section-heading-line-height);
}

.nature-space h2 {
  max-width: 920px;
}

.nature-line {
  position: relative;
  width: min(860px, 100%);
  display: flex;
  align-items: end;
  gap: clamp(18px, 3vw, 42px);
  margin-top: clamp(26px, 3vw, 42px);
}

.nature-space p {
  max-width: 690px;
  color: var(--stone);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
}

.nature-bird {
  --bird-scroll: 0;
  width: clamp(132px, 18vw, 260px);
  flex: 0 0 auto;
  margin: 0 0 -.35em;
  transform:
    translate3d(calc(var(--bird-scroll) * 14px), calc(var(--bird-scroll) * -24px), 0)
    rotate(calc(var(--bird-scroll) * 1.8deg));
  animation: bird-breathe 5.8s ease-in-out infinite alternate;
  transition: transform .08s linear;
}

.nature-bird.is-wiggling {
  animation: bird-wiggle .58s ease-in-out infinite;
}

.nature-bird img {
  width: 100%;
  filter: drop-shadow(0 18px 22px rgba(17, 19, 15, .1));
}

@keyframes bird-breathe {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -8px;
  }
}

@keyframes bird-wiggle {
  0%,
  100% {
    rotate: 0deg;
    translate: 0 0;
  }

  25% {
    rotate: .7deg;
    translate: .8px -.45px;
  }

  50% {
    rotate: -.6deg;
    translate: -.55px .35px;
  }

  75% {
    rotate: .5deg;
    translate: .45px -.2px;
  }
}

.about-duo {
  display: grid;
  gap: clamp(96px, 13vw, 190px);
  padding-top: clamp(18px, 3vw, 44px);
  overflow: clip;
  background:
    linear-gradient(180deg, var(--paper), #f4f6f1 46%, var(--paper));
}

.person-feature {
  --scroll-shift: 0px;
  --blob-tilt: -4deg;
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(320px, .64fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: center;
  margin-inline: auto;
}

.person-feature-vera {
  --blob-tilt: 14deg;
  grid-template-columns: minmax(320px, .64fr) minmax(0, .94fr);
}

.person-feature-vera .person-portrait {
  grid-column: 2;
}

.person-feature-vera .person-copy {
  grid-column: 1;
  grid-row: 1;
  margin-left: auto;
}

.person-portrait {
  position: relative;
  min-height: clamp(430px, 49vw, 660px);
  display: grid;
  place-items: end center;
  isolation: isolate;
  transform: translate3d(0, calc(var(--scroll-shift) * -.12), 0);
}

.person-blob {
  position: absolute;
  z-index: -1;
  border-radius: 42% 58% 54% 46% / 46% 40% 60% 54%;
  filter: blur(3px);
  opacity: .88;
  transform: translate3d(0, calc(var(--scroll-shift) * .16), 0) rotate(var(--blob-tilt));
  animation: anamorph-chris 11s ease-in-out infinite alternate;
}

.person-feature-chris .person-blob {
  left: 6%;
  right: 3%;
  bottom: 0%;
  aspect-ratio: 1.5 / 1;
  filter: blur(3px) saturate(1.12);
  opacity: .9;
  background:
    radial-gradient(circle at 26% 20%, rgba(40, 54, 41, .72), transparent 36%),
    radial-gradient(circle at 70% 34%, rgba(51, 96, 66, .52), transparent 38%),
    radial-gradient(circle at 44% 76%, rgba(72, 108, 82, .4), transparent 34%),
    #e2ebe4;
}

.person-feature-vera .person-blob {
  left: 0;
  right: 10%;
  bottom: 4%;
  aspect-ratio: 1.1 / 1;
  background:
    radial-gradient(circle at 35% 28%, rgba(158, 92, 61, .72), transparent 32%),
    radial-gradient(circle at 72% 40%, rgba(166, 163, 153, .45), transparent 34%),
    radial-gradient(circle at 48% 76%, rgba(90, 120, 95, .4), transparent 35%),
    #f0e8dc;
  animation-name: anamorph-vera;
  animation-duration: 13s;
}

.person-portrait img {
  width: min(100%, 760px);
  max-height: clamp(430px, 54vw, 720px);
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(1) contrast(1.06) drop-shadow(0 26px 34px rgba(17, 19, 15, .13));
  transform: translate3d(0, calc(var(--scroll-shift) * -.08), 0);
}

.person-feature-chris .person-portrait img {
  width: min(108%, 890px);
}

.person-feature-vera .person-portrait img {
  width: min(86%, 620px);
}

.person-copy {
  max-width: 470px;
}

.person-kicker {
  margin-bottom: clamp(20px, 2.5vw, 34px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.person-copy h2 {
  margin-bottom: clamp(22px, 2.8vw, 34px);
}

.person-copy>p:not(.person-kicker) {
  color: var(--stone);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
}

.person-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 0;
  list-style: none;
}

.person-tags-nowrap {
  flex-wrap: nowrap;
}

.person-tags li {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 19, 15, .16);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--moss);
  background: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
}

.person-link {
  width: fit-content;
  display: inline-flex;
  margin-top: clamp(20px, 2.6vw, 32px);
  border-bottom: 1px solid currentColor;
  color: var(--clay);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 750;
  line-height: 1.35;
}

.person-link:hover {
  color: var(--ink);
}

@keyframes anamorph-chris {
  0% {
    border-radius: 42% 58% 54% 46% / 46% 40% 60% 54%;
    scale: 1 1;
  }

  50% {
    border-radius: 52% 48% 48% 52% / 44% 52% 48% 56%;
    scale: 1.02 .98;
  }

  100% {
    border-radius: 46% 54% 58% 42% / 52% 44% 56% 48%;
    scale: .99 1.02;
  }
}

@keyframes anamorph-vera {
  0% {
    border-radius: 38% 62% 58% 42% / 42% 38% 62% 58%;
    scale: 1 1;
  }

  50% {
    border-radius: 62% 38% 40% 60% / 36% 58% 42% 64%;
    scale: 1.03 .97;
  }

  100% {
    border-radius: 44% 56% 64% 36% / 60% 42% 58% 40%;
    scale: .96 1.03;
  }
}

@media (prefers-reduced-motion: reduce) {
  .person-blob,
  .offer-cloud::before,
  .offer-cloud::after {
    animation: none;
  }
}

.section-intro h2,
.pricing h2,
.video-caption {
  margin-bottom: clamp(26px, 3vw, 42px);
}

.section-intro p {
  color: var(--stone);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.68;
}

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

.video-head p,
.work-head p {
  margin-bottom: clamp(20px, 2.6vw, 34px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-caption {
  color: var(--ink);
}

.video-frame {
  position: relative;
  width: var(--container);
  aspect-ratio: 16 / 9;
  max-height: 82svh;
  margin-inline: auto;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 34px 90px rgba(17, 19, 15, .16);
  overflow: hidden;
}

.nature-video-embed,
.nature-video-embed iframe,
.nature-video-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nature-video-preview {
  z-index: 0;
  object-fit: cover;
  transform: scale(1.02);
  transition: opacity .55s ease;
}

.video-frame.is-playing .nature-video-preview {
  opacity: 0;
  pointer-events: none;
}

.nature-video-embed iframe {
  z-index: 1;
  border: 0;
  pointer-events: none;
}

.video-frame.is-playing iframe {
  pointer-events: auto;
}

.video-play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 14px;
  border: 0;
  background: radial-gradient(circle at center, rgba(17, 19, 15, .34), rgba(17, 19, 15, .06) 52%, transparent 72%);
  color: var(--paper);
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, opacity .35s ease;
}

.video-play:hover {
  transform: scale(1.01);
  background: radial-gradient(circle at center, rgba(17, 19, 15, .44), rgba(17, 19, 15, .08) 56%, transparent 74%);
}

.video-frame.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}

.video-play-icon {
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(17, 19, 15, .62);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .22);
}

.video-play-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid rgba(255, 255, 255, .92);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  transform: translateX(2px);
}

.video-play-label {
  position: absolute;
  top: calc(50% + clamp(48px, 5.8vw, 66px));
  font-size: 13px;
  font-weight: 750;
}

.studio-list {
  margin: clamp(34px, 4vw, 52px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.studio-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--stone);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.4;
}

.studio-list span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
}

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

/* two-column layout: text left, cloud right */
#angebot .craft-inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: start;
  gap: clamp(40px, 5vw, 72px);
}

.craft-head {
  max-width: 1040px;
  margin-bottom: clamp(20px, 3vw, 36px);
}

/* in two-column context the gap handles spacing; text sticks while cloud animates */
#angebot .craft-head {
  margin-bottom: 0;
  position: sticky;
  top: clamp(24px, 4vw, 44px);
}

.craft-head h2 {
  max-width: none;
  margin-bottom: clamp(24px, 3vw, 36px);
  letter-spacing: -0.015em;
}

.craft-head > p:first-child {
  max-width: none;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.craft-intro {
  max-width: 760px;
  color: var(--stone);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.68;
}

.craft-note {
  max-width: 760px;
  margin-top: clamp(18px, 2.5vw, 28px);
  color: var(--stone-2);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.55;
}

.craft-note a {
  border-bottom: 1px solid rgba(158, 92, 61, .42);
  color: var(--clay);
  font-weight: 750;
}

.craft-note a:hover {
  color: var(--ink);
}

#angebot .craft-body {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  position: relative;
  width: 100%;
}

.craft-body .studio-list {
  margin-top: 0;
}

.offer-list {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  list-style: none;
}

.offer-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px clamp(12px, 2vw, 18px);
  padding: 10px 6px 10px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background .22s ease;
}

.offer-item:last-child {
  border-bottom: none;
}

.offer-item:hover,
.offer-item.is-highlighted {
  border-radius: var(--radius);
  background: rgba(238, 242, 238, .62);
}

.offer-index {
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
}

.offer-item-body {
  display: grid;
  grid-template-columns: minmax(6.8rem, 8rem) minmax(0, 1fr);
  column-gap: clamp(14px, 2.2vw, 22px);
  align-items: baseline;
}

.offer-item-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 750;
  line-height: 1.3;
}

.offer-item-body p {
  margin: 0;
  color: var(--stone);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.45;
}

.offer-item--solo {
  grid-template-columns: minmax(0, 1fr);
}


.offer-cloud {
  --mx: 0;
  --my: 0;
  --parallax: .4;
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: clamp(420px, 58vw, 640px);
  margin-top: 0;
  transform: none;
  isolation: isolate;
}

.offer-cloud::before {
  content: "";
  position: absolute;
  /* extend top further so mist drifts up toward the section heading */
  inset: -22% -8% -6%;
  z-index: 0;
  border: none;
  border-radius: 0;
  background:
    /* very faint sage wisps for texture */
    radial-gradient(ellipse 44% 30% at 30% 38%, rgba(101, 138, 110, .09), transparent 100%),
    radial-gradient(ellipse 38% 28% at 68% 24%, rgba(80, 116, 88, .07), transparent 100%),
    radial-gradient(ellipse 50% 36% at 72% 62%, rgba(72, 108, 82, .06), transparent 100%),
    radial-gradient(ellipse 36% 30% at 24% 70%, rgba(90, 120, 95, .06), transparent 100%),
    /* warm cream centre — the luminous heart of the mist */
    radial-gradient(ellipse 84% 64% at 50% 56%, rgba(245, 241, 232, .56) 0%, rgba(236, 231, 220, .18) 52%, transparent 84%),
    /* soft upward bleed — bridges gap to heading text */
    radial-gradient(ellipse 62% 22% at 50% 4%, rgba(242, 238, 228, .14), transparent 100%);
  opacity: .9;
  transform: translate(calc(var(--mx) * var(--parallax) * -8px), calc(var(--my) * var(--parallax) * -6px));
  transition: transform .35s ease;
  animation: offerCloudMist 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.offer-cloud::after {
  content: "";
  position: absolute;
  inset: -4% -2% -2%;
  z-index: 0;
  border: none;
  border-radius: 0;
  background:
    /* soft warm glow at centre */
    radial-gradient(ellipse 64% 54% at 50% 47%, rgba(248, 244, 236, .32) 0%, rgba(240, 235, 224, .08) 58%, transparent 80%),
    /* barely-there green ambient */
    radial-gradient(ellipse 40% 32% at 36% 64%, rgba(40, 54, 41, .04), transparent 100%),
    radial-gradient(ellipse 34% 26% at 66% 34%, rgba(72, 108, 82, .04), transparent 100%);
  opacity: .8;
  transform: translate(calc(var(--mx) * var(--parallax) * 6px), calc(var(--my) * var(--parallax) * 5px));
  transition: transform .35s ease;
  animation: offerCloudMistOutline 22s ease-in-out infinite alternate-reverse;
  pointer-events: none;
}

.offer-cloud.is-pointer-active {
  --parallax: 1;
  --hub-drift: 1.55;
}

.offer-cloud.is-pointer-active button.offer-chip[data-offer-chip]:not(.is-highlighted)::after {
  animation-duration: 2.6s;
}

.offer-network {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  /* lines hidden — JS topology kept intact for future use */
  opacity: 0;
}

.offer-network line,
.offer-network path {
  fill: none;
  stroke-width: 1.15;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: opacity .35s ease;
}

/* idle: recognisable but very soft */
.offer-network path[data-offer-group="strategy"] { stroke: rgba(158, 92, 61, .13); }
.offer-network path[data-offer-group="core"]     { stroke: rgba(40, 54, 41, .07); }
.offer-network path[data-offer-group="build"]    { stroke: rgba(166, 163, 153, .11); }

/* pointer-over cloud: threads come alive */
.offer-cloud.is-pointer-active .offer-network path[data-offer-group="strategy"] { stroke: rgba(158, 92, 61, .30); }
.offer-cloud.is-pointer-active .offer-network path[data-offer-group="core"]     { stroke: rgba(40, 54, 41, .18); }
.offer-cloud.is-pointer-active .offer-network path[data-offer-group="build"]    { stroke: rgba(166, 163, 153, .26); }

/* same-category siblings */
.offer-network path.is-related[data-offer-group="strategy"] { stroke: rgba(158, 92, 61, .24); }
.offer-network path.is-related[data-offer-group="core"]     { stroke: rgba(40, 54, 41, .16); }
.offer-network path.is-related[data-offer-group="build"]    { stroke: rgba(166, 163, 153, .21); }

/* active thread: prominent */
.offer-network path.is-active { stroke-width: 1.5; }
.offer-network path.is-active[data-offer-group="strategy"] { stroke: rgba(158, 92, 61, .52); }
.offer-network path.is-active[data-offer-group="core"]     { stroke: rgba(40, 54, 41, .38); }
.offer-network path.is-active[data-offer-group="build"]    { stroke: rgba(166, 163, 153, .42); }

.offer-hub {
  --hub-drift: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  margin: 0;
  max-width: min(14rem, 48%);
  padding: 8px 18px;
  background: rgba(40, 54, 41, .07);
  color: var(--moss);
  border: 1px solid rgba(40, 54, 41, .16);
  border-radius: 40px;
  box-shadow: none;
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 560;
  font-variation-settings: "opsz" 88, "wght" 560, "SOFT" 28, "WONK" 0;
  line-height: 1.08;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  pointer-events: none;
  will-change: transform;
  transform:
    translate(-50%, -50%)
    translate(calc(var(--mx) * var(--parallax) * 8px * var(--hub-drift)), calc(var(--my) * var(--parallax) * 6px * var(--hub-drift)));
  transition: color .25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .offer-hub {
    animation: offerHubFloat 9s ease-in-out infinite;
  }

  .offer-cloud.is-pointer-active .offer-hub {
    animation-duration: 7s;
  }
}

@keyframes offerHubFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -3px;
  }
}

@keyframes offerCloudMist {
  0% {
    scale: 1 1;
    rotate: -1deg;
    filter: blur(24px);
  }

  30% {
    scale: 1.05 .97;
    rotate: 1.5deg;
    filter: blur(18px);
  }

  65% {
    scale: .97 1.05;
    rotate: -2deg;
    filter: blur(28px);
  }

  100% {
    scale: 1.03 .98;
    rotate: 1deg;
    filter: blur(22px);
  }
}

@keyframes offerCloudMistOutline {
  0% {
    scale: 1 1;
    rotate: 2deg;
    filter: blur(32px);
    opacity: .72;
  }

  40% {
    scale: 1.06 .95;
    rotate: -1.5deg;
    filter: blur(24px);
    opacity: .84;
  }

  100% {
    scale: .96 1.06;
    rotate: 2.5deg;
    filter: blur(30px);
    opacity: .68;
  }
}

button.offer-chip {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  cursor: pointer;
  touch-action: manipulation;
}

button.offer-chip[data-offer-chip]:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
}

.offer-chip {
  --x: 50%;
  --y: 50%;
  --r: 0deg;
  --s: 1;
  --depth: 1;
  --chip-radius: 14px;
  --chip-ring: rgba(40, 54, 41, .32);
  position: absolute;
  left: var(--x);
  top: var(--y);
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--chip-radius);
  background: var(--paper);
  color: var(--moss);
  box-shadow: 0 8px 20px rgba(17, 19, 15, .06);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  transform:
    translate(-50%, -50%) translate(calc(var(--mx) * var(--depth) * var(--parallax) * 20px), calc(var(--my) * var(--depth) * var(--parallax) * 16px)) rotate(var(--r)) scale(var(--s));
  animation: cloudFloat 8.4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition:
    transform .34s cubic-bezier(.2, .8, .2, 1),
    opacity .28s ease,
    background .22s ease,
    color .22s ease,
    border-color .22s ease,
    box-shadow .22s ease;
}

.offer-chip[data-offer-group="strategy"] {
  --chip-ring: rgba(158, 92, 61, .42);
  background: transparent;
  color: var(--clay);
  border-color: rgba(158, 92, 61, .52);
}

/* Tier 1 — core services: light sage wash, moss text */
.offer-chip[data-offer-group="core"] {
  --chip-ring: rgba(40, 54, 41, .28);
  background: rgba(40, 54, 41, .09);
  color: var(--moss);
  border-color: rgba(40, 54, 41, .22);
  box-shadow: none;
  font-size: clamp(15px, 1.3vw, 17px);
  padding: 0 16px;
}

/* Tier 3 — build / production: stone outline */
.offer-chip[data-offer-group="build"] {
  --chip-ring: rgba(166, 163, 153, .5);
  background: transparent;
  color: var(--stone);
  border-color: var(--stone-2);
  box-shadow: none;
}

.offer-chip[data-offer-chip] {
  z-index: 3;
  cursor: pointer;
}

button.offer-chip[data-offer-chip]::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid transparent;
  border-radius: calc(var(--chip-radius) + 4px);
  pointer-events: none;
  animation: offerChipRing 3.2s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

button.offer-chip[data-offer-chip].is-highlighted::after,
button.offer-chip[data-offer-chip]:focus-visible::after {
  animation: none;
  opacity: 0;
}

.offer-chip:hover,
.offer-chip.is-highlighted {
  --s: 1.05;
  z-index: 3;
  box-shadow: 0 12px 28px rgba(17, 19, 15, .1);
}

/* related chips — scale up and show stronger colour so the connection is felt */
.offer-chip.is-related {
  --s: 1.04;
  z-index: 4;
  box-shadow: 0 8px 22px rgba(17, 19, 15, .09);
}

.offer-chip[data-offer-group="strategy"].is-related {
  background: rgba(158, 92, 61, .10);
  border-color: rgba(158, 92, 61, .62);
  color: var(--clay);
}

.offer-chip[data-offer-group="strategy"]:hover,
.offer-chip[data-offer-group="strategy"].is-highlighted {
  background: var(--clay);
  color: var(--paper);
  border-color: var(--clay);
}

.offer-chip[data-offer-group="core"].is-related {
  background: rgba(40, 54, 41, .14);
  border-color: rgba(40, 54, 41, .36);
  color: var(--moss);
}

.offer-chip[data-offer-group="core"]:hover,
.offer-chip[data-offer-group="core"].is-highlighted {
  background: rgba(40, 54, 41, .18);
  color: var(--moss);
  border-color: rgba(40, 54, 41, .44);
  box-shadow: 0 10px 24px rgba(17, 19, 15, .08);
}

.offer-chip[data-offer-group="build"].is-related {
  background: rgba(166, 163, 153, .14);
  border-color: var(--stone-2);
  color: var(--stone);
}

.offer-chip[data-offer-group="build"]:hover,
.offer-chip[data-offer-group="build"].is-highlighted {
  background: var(--stone);
  color: var(--paper);
  border-color: var(--stone);
  box-shadow: 0 12px 28px rgba(119, 120, 111, .2);
}

/* when a chip is in focus, gently fade everything unrelated */
.offer-cloud.has-chip-focus .offer-chip:not(.is-highlighted):not(.is-related):not(:hover) {
  --s: 0.97;
  opacity: 0.38;
}

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

.offer-stage {
  display: block;
  position: relative;
  width: 100%;
  /* 58 vw ≈ cloud column width; clamp keeps it sane on very wide or narrow viewports */
  min-height: clamp(420px, 58vw, 640px);
  margin-inline: auto;
  margin-top: 0;
}

.offer-stage .offer-cloud {
  position: relative;
  width: 100%;
  min-height: inherit;
  margin: 0;
  transform: none;
  overflow: visible;
}

.offer-link {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 22;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.offer-link[hidden] {
  display: none;
}

.offer-link line {
  stroke: rgba(40, 54, 41, .42);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0;
  transition: opacity .28s ease;
}

.offer-link.is-visible line {
  opacity: 1;
}

.offer-detail.offer-tooltip {
  --tail-x: 50%;
  --tooltip-y: 0;
  position: absolute;
  top: var(--tooltip-y);
  left: var(--tooltip-x, 50%);
  z-index: 40;
  display: block;
  width: min(18rem, calc(100% - 12px));
  margin: 0;
  padding: 14px 16px 18px;
  border: 1px solid rgba(40, 54, 41, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 40px rgba(17, 19, 15, .12);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity .28s ease,
    transform .34s cubic-bezier(.2, .9, .2, 1),
    visibility .28s ease;
}

.offer-detail.offer-tooltip.is-above {
  transform: translateX(-50%) translateY(calc(-100% - 6px)) scale(.96);
  transform-origin: 50% 100%;
}

.offer-detail.offer-tooltip.is-below {
  transform: translateX(-50%) translateY(6px) scale(.96);
  transform-origin: 50% 0;
}

.offer-detail.offer-tooltip.is-above::after {
  content: "";
  position: absolute;
  left: var(--tail-x);
  bottom: -7px;
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(40, 54, 41, .2);
  border-bottom: 1px solid rgba(40, 54, 41, .2);
  background: rgba(255, 255, 255, .98);
  transform: translateX(-50%) rotate(45deg);
}

.offer-detail.offer-tooltip.is-below::after {
  content: "";
  position: absolute;
  left: var(--tail-x);
  top: -7px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(40, 54, 41, .2);
  border-left: 1px solid rgba(40, 54, 41, .2);
  background: rgba(255, 255, 255, .98);
  transform: translateX(-50%) rotate(45deg);
}

.offer-detail.offer-tooltip.is-above.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-100%) scale(1);
}

.offer-detail.offer-tooltip.is-below.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.offer-detail.offer-tooltip[hidden] {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

button.offer-chip[data-offer-chip] {
  animation: cloudFloat 8.4s ease-in-out infinite;
}

.offer-cloud.is-pointer-active button.offer-chip[data-offer-chip]:not(.is-highlighted) {
  animation: cloudFloat 7.2s ease-in-out infinite, offerChipPulse 3.4s ease-in-out infinite;
}

button.offer-chip[data-offer-chip].is-highlighted {
  z-index: 25;
  animation-play-state: paused;
}

.offer-detail-title {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
}

.offer-detail-text {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.5;
}

@keyframes cloudFloat {

  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -5px;
  }
}

@keyframes offerChipPulse {

  0%,
  100% {
    box-shadow: 0 8px 20px rgba(17, 19, 15, .06);
  }

  50% {
    box-shadow: 0 10px 24px rgba(17, 19, 15, .09);
  }
}

@keyframes offerChipRing {

  0%,
  100% {
    opacity: 0;
    border-color: transparent;
    transform: scale(.98);
  }

  50% {
    opacity: 1;
    border-color: var(--chip-ring);
    transform: scale(1);
  }
}

@keyframes offerFingerTap {

  0%,
  100% {
    transform: translate(-40%, -108%) scale(1);
  }

  45% {
    transform: translate(-40%, -90%) scale(.9);
  }
}

.work-section {
  padding-top: clamp(36px, 5vw, 82px);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .48fr);
  gap: clamp(34px, 8vw, 126px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-intro h2 {
  max-width: 860px;
  margin-bottom: 0;
}

.work-river {
  width: var(--container);
  display: grid;
  gap: clamp(54px, 8vw, 104px);
  margin-inline: auto;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .62fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.work-item:nth-child(even) {
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.08fr);
}

.work-item:nth-child(even) .work-preview {
  grid-column: 2;
}

.work-item:nth-child(even) .work-copy {
  grid-column: 1;
  grid-row: 1;
}

.work-preview {
  --preview-scroll: -62%;
  --preview-duration: 12s;
  --preview-ease: cubic-bezier(0.42, 0, 0.58, 1);
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--mist);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 19, 15, .1);
}

.work-preview img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition:
    transform var(--preview-duration) var(--preview-ease),
    filter .55s ease;
}

.work-item:nth-child(4) .work-preview {
  --preview-scroll: 0%;
}

.work-item:hover .work-preview img {
  transform: translateY(var(--preview-scroll));
  filter: saturate(1.08) contrast(1.02);
}

.work-item:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 8px;
}

.work-item:focus-visible .work-preview img {
  transform: translateY(var(--preview-scroll));
}

.work-copy {
  display: grid;
  gap: 12px;
}

.work-copy span {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 51px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.work-copy em {
  color: var(--stone);
  font-style: normal;
  font-size: 13px;
  font-weight: 750;
}

.work-copy strong {
  max-width: 470px;
  color: var(--stone);
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 500;
  line-height: 1.58;
}

.work-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 19, 15, .08);
  opacity: 0;
  transition: opacity .32s ease;
  pointer-events: none;
}

.work-item:hover .work-preview::before,
.work-item:focus-visible .work-preview::before {
  opacity: 1;
}

.work-expand {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 10px 28px rgba(17, 19, 15, .14);
  opacity: 0;
  transform: scale(.88);
  transition:
    opacity .28s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1);
  pointer-events: none;
}

.work-expand::before,
.work-expand::after {
  content: "";
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}

.work-expand::before {
  top: 11px;
  right: 11px;
  width: 10px;
  height: 1.5px;
}

.work-expand::after {
  top: 11px;
  right: 11px;
  width: 1.5px;
  height: 10px;
}

.work-item:hover .work-expand,
.work-item:focus-visible .work-expand {
  opacity: 1;
  transform: scale(1);
}

body.is-portfolio-open {
  overflow: hidden;
}

body.is-portfolio-open .site-header {
  transform: translateY(-100%);
}

.testimonial-section {
  padding-top: clamp(40px, 6vw, 92px);
  background:
    linear-gradient(180deg, var(--paper), #f7f6f1 50%, var(--paper));
}

.testimonial-inner {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(220px, .36fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 112px);
  align-items: start;
  margin-inline: auto;
}

.testimonial-head p {
  margin-bottom: clamp(20px, 2.6vw, 34px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-head h2 {
  max-width: 8.5ch;
}

.testimonial-panel {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.testimonial-track {
  position: relative;
}

.testimonial-card {
  position: relative;
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  margin: 0;
  padding: clamp(28px, 4vw, 48px) 0 0;
  border-top: 1px solid var(--line-strong);
}

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

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: clamp(14px, 2vw, 26px);
  right: 0;
  color: rgba(158, 92, 61, .18);
  font-family: var(--serif);
  font-size: clamp(59px, 8.2vw, 108px);
  font-weight: 560;
  line-height: .6;
}

.testimonial-card blockquote {
  max-width: 900px;
  margin: 0;
}

.testimonial-card blockquote p {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 520;
  font-variation-settings: "opsz" 88, "wght" 520, "SOFT" 20, "WONK" 0;
  letter-spacing: 0;
  line-height: 1.38;
}

.testimonial-card figcaption {
  display: grid;
  gap: 4px;
  color: var(--stone);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.45;
}

.testimonial-card figcaption strong {
  color: var(--ink);
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 750;
}

.testimonial-card figcaption a {
  width: fit-content;
  margin-top: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--clay);
  font-weight: 750;
}

.testimonial-card figcaption a:hover {
  color: var(--ink);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.5vw, 22px);
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color .22s ease,
    background .22s ease,
    color .22s ease,
    transform .22s ease;
}

.testimonial-arrow:hover {
  border-color: rgba(40, 54, 41, .42);
  background: rgba(238, 242, 238, .9);
  color: var(--moss);
}

.testimonial-arrow:active {
  transform: scale(.96);
}

.testimonial-counter {
  margin: 0;
  min-width: 3.2rem;
  color: var(--stone);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  text-align: center;
}

.pricing {
  border-top: 1px solid var(--line);
}

.pricing-head {
  display: grid;
  grid-template-columns: 140px 1fr minmax(220px, .42fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: start;
  margin-bottom: clamp(46px, 8vw, 86px);
}

.pricing-head p {
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.pricing-head h2 {
  margin-bottom: 0;
}

.pricing-head span {
  color: var(--stone);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
}

.price-table {
  width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--line-strong);
}

.price-item {
  border-bottom: 1px solid var(--line);
}

.price-summary {
  width: 100%;
  min-height: 94px;
  display: grid;
  grid-template-columns: 150px 1fr 180px 34px;
  gap: 26px;
  align-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.price-summary span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.price-summary strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.45vw, 38px);
  font-weight: 560;
  font-variation-settings: "opsz" 78, "wght" 560, "SOFT" 18, "WONK" 0;
  line-height: 1;
}

.price-summary em {
  font-style: normal;
  font-size: clamp(17px, 1.85vw, 26px);
  font-weight: 750;
  text-align: right;
}

.price-summary i {
  width: 30px;
  height: 30px;
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.price-summary i::before,
.price-summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .22s ease;
}

.price-summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.price-summary[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.price-item.base .price-summary {
  min-height: 124px;
}

.price-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, .36fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 0 34px clamp(32px, 4vw, 48px) 176px;
}

.price-detail[hidden] {
  display: none;
}

.price-detail p {
  color: var(--stone);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.68;
}

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

.price-detail li {
  position: relative;
  padding-left: 18px;
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.52;
}

.price-detail li+li {
  margin-top: 10px;
}

.price-detail li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--clay);
}

.price-request {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  justify-self: start;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 12px;
  font-weight: 750;
}

.contact {
  position: relative;
  min-height: min(92svh, 920px);
  display: grid;
  align-items: end;
  padding: clamp(100px, 13vw, 190px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--ink);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 12, 8, .72), rgba(8, 12, 8, .32) 44%, rgba(8, 12, 8, .08)),
    linear-gradient(0deg, rgba(8, 12, 8, .82), rgba(8, 12, 8, .05) 58%);
}

.contact>img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(.92) contrast(1.04);
}

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

.contact p {
  margin-bottom: clamp(26px, 3vw, 42px);
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.contact h2 {
  max-width: 1050px;
  margin-bottom: clamp(34px, 4vw, 56px);
}

.contact a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, .78);
  color: rgba(255, 255, 255, .86);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 750;
}

.site-footer {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, .14);
  background: var(--ink);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 650;
}

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

.legal-page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
}

.legal-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
}

.legal-header a:last-child {
  color: var(--stone);
  font-size: 14px;
  font-weight: 750;
}

.legal-main {
  width: min(860px, calc(100vw - (var(--gutter) * 2)));
  margin-inline: auto;
  padding: clamp(84px, 12vw, 150px) 0;
}

.legal-main h1 {
  margin-bottom: clamp(34px, 5vw, 58px);
  font-size: clamp(39px, 5.75vw, 75px);
}

.legal-section {
  padding-block: 28px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-family: var(--sans);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-section p {
  color: var(--stone);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.68;
}

.legal-section p+p {
  margin-top: 12px;
}

.legal-section a {
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 750;
}

@media (max-width: 980px) {
  :root {
    --section-heading-size: clamp(31px, 8.2vw, 52px);
  }

  body::before {
    display: none;
  }

  .site-header {
    min-height: 66px;
    transform: translateY(0);
  }

  .hero-brand {
    display: none;
  }

  .menu-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--ink);
  }

  .menu-button span,
  .menu-button span::before,
  .menu-button span::after {
    display: block;
    width: 17px;
    height: 2px;
    background: currentColor;
    content: "";
  }

  .menu-button span::before {
    transform: translateY(-6px);
  }

  .menu-button span::after {
    transform: translateY(4px);
  }

  .nav {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 12px;
  }

  .opening .hero-media img {
    object-position: 57% 50%;
  }

  .editorial-pad {
    padding-block: clamp(82px, 18vw, 130px);
  }

  .nature-space {
    min-height: auto;
    padding-bottom: clamp(34px, 8vw, 58px);
  }

  .nature-line {
    align-items: center;
  }

  .about-duo {
    gap: clamp(78px, 15vw, 126px);
    padding-top: clamp(12px, 4vw, 28px);
    overflow: visible;
  }

  .person-feature,
  .person-feature-vera,
  .section-intro,
  .pricing-head,
  .testimonial-inner,
  .craft-body {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 6vw, 48px);
  }

  .person-feature,
  .person-feature-vera {
    width: 100%;
    max-width: var(--container);
  }

  /* collapse two-column back to stacked */
  #angebot .craft-inner {
    display: block;
  }

  #angebot .craft-head {
    position: static;
    margin-bottom: clamp(10px, 3vw, 18px);
    text-align: center;
  }

  #angebot .craft-intro {
    font-size: clamp(15px, 2.4vw, 18px);
    margin-top: clamp(14px, 2.5vw, 22px);
  }

  #angebot .craft-note {
    margin-top: clamp(12px, 2vw, 18px);
    font-size: clamp(14px, 2.2vw, 16px);
  }

  #angebot .craft-body {
    min-height: min(78vh, 620px);
  }

  #angebot .craft-body {
    padding-inline: 0;
  }

  #angebot .offer-stage {
    width: 100%;
    min-height: min(104vw, 540px);
  }

  .offer-cloud {
    min-height: min(104vw, 540px);
  }

  .offer-detail-title {
    font-size: 14px;
  }

  .offer-detail-text {
    font-size: 13px;
    line-height: 1.48;
  }

  .person-feature-vera .person-portrait,
  .person-feature-vera .person-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .person-feature-vera .person-copy {
    margin-left: 0;
  }

  .person-portrait {
    min-height: 0;
    width: 100%;
    max-width: 100%;
    padding-inline: clamp(4px, 1.8vw, 12px);
    overflow: visible;
  }

  .person-portrait,
  .person-portrait img {
    transform: none;
  }

  .person-feature-vera .person-portrait {
    order: -1;
  }

  .person-feature-chris .person-portrait img,
  .person-feature-vera .person-portrait img {
    width: min(92%, 100%);
    max-width: 100%;
    max-height: 620px;
  }

  .person-feature-chris .person-blob {
    left: 8%;
    right: 8%;
  }

  .testimonial-head h2 {
    max-width: none;
  }

  .testimonial-card {
    padding-top: clamp(28px, 6vw, 46px);
  }

  .offer-item {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px 12px;
    padding-block: 12px;
  }

  .offer-item-body {
    grid-template-columns: 1fr;
    row-gap: 4px;
  }

  .work-river {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .work-item,
  .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .work-item:nth-child(even) .work-preview,
  .work-item:nth-child(even) .work-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .price-summary {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .price-summary {
    grid-template-columns: 1fr 34px;
  }

  .price-summary span,
  .price-summary strong,
  .price-summary em {
    grid-column: 1;
  }

  .price-summary i {
    grid-column: 2;
    grid-row: 1 / span 3;
    justify-self: end;
  }

  .price-summary em {
    text-align: left;
  }

  .price-detail {
    grid-template-columns: 1fr;
    padding: 0 0 32px;
  }

  .price-request {
    grid-column: auto;
  }

  .contact {
    min-height: 72svh;
  }

  .site-footer {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 18px;
  }

  body {
    font-size: 17px;
  }

  .opening,
  .opening .hero-media,
  .opening .hero-media img {
    min-height: 100svh;
    height: 100svh;
  }

  .opening-copy h1 {
    font-size: clamp(40px, 12.5vw, 60px);
  }

  .hero-wifi-hint {
    bottom: clamp(14px, 2.8vh, 28px);
  }

  .hero-wifi-hint .hero-wifi {
    width: clamp(44px, 12vw, 56px);
    height: clamp(44px, 12vw, 56px);
  }

  .opening-copy {
    bottom: clamp(72px, 14vh, 108px);
  }

  .nature-space h2 {
    max-width: 10.8ch;
  }

  .nature-line {
    display: grid;
    gap: 20px;
  }

  .nature-bird {
    width: clamp(130px, 43vw, 190px);
    margin-left: auto;
    margin-right: 8vw;
  }

  .person-copy>p:not(.person-kicker),
  .section-intro p {
    font-size: 18px;
  }

  .person-tags-nowrap {
    flex-wrap: wrap;
  }

  .person-feature-chris .person-portrait img {
    width: min(88%, 100%);
  }

  .testimonial-card blockquote p {
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.36;
  }

  .testimonial-card::before {
    top: 18px;
    font-size: 78px;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
    font-size: 20px;
  }

  .video-frame {
    border-radius: 6px;
  }

  .offer-stage {
    width: 100%;
    min-height: min(108vw, 540px);
  }

  .offer-cloud {
    min-height: min(108vw, 540px);
  }

  .offer-stage .offer-cloud::before {
    inset: -10% 2% 4% 2%;
  }

  .offer-stage .offer-cloud::after {
    inset: -2% 0% 2% 0%;
  }

  .offer-hub {
    max-width: min(11rem, 58%);
    font-size: clamp(16px, 5.2vw, 22px);
    padding: 7px 14px;
  }

  .offer-cloud {
    --parallax: .2;
  }

  button.offer-chip[data-offer-chip] {
    --chip-radius: 11px;
    min-height: 34px;
    padding-inline: 10px;
    font-size: 12px;
    animation-duration: 10.5s;
  }

  button.offer-chip[data-offer-chip][data-offer-group="core"] {
    font-size: 13px;
    padding-inline: 11px;
  }

  button.offer-chip[data-offer-chip]::after {
    inset: -3px;
    border-radius: calc(var(--chip-radius) + 3px);
  }

  /* Mobile cloud: wider ellipse, extra clearance around hub (esp. Konzept & E-Mail) */
  .offer-chip[data-offer-chip="konzept"]        { --x: 41% !important; --y: 16% !important; }
  .offer-chip[data-offer-chip="positionierung"] { --x: 69% !important; --y: 21% !important; }
  .offer-chip[data-offer-chip="sprache"]        { --x: 81% !important; --y: 35% !important; }
  .offer-chip[data-offer-chip="code"]           { --x: 85% !important; --y: 50% !important; }
  .offer-chip[data-offer-chip="video"]          { --x: 81% !important; --y: 65% !important; }
  .offer-chip[data-offer-chip="launch"]         { --x: 71% !important; --y: 76% !important; }
  .offer-chip[data-offer-chip="email"]          { --x: 47% !important; --y: 85% !important; }
  .offer-chip[data-offer-chip="illustration"]   { --x: 29% !important; --y: 76% !important; }
  .offer-chip[data-offer-chip="fotografie"]     { --x: 17% !important; --y: 65% !important; }
  .offer-chip[data-offer-chip="begleitung"]     { --x: 13% !important; --y: 50% !important; }
  .offer-chip[data-offer-chip="social-content"] { --x: 17% !important; --y: 35% !important; }
  .offer-chip[data-offer-chip="storytelling"]   { --x: 29% !important; --y: 21% !important; }

  .offer-chip[data-offer-chip="konzept"],
  .offer-chip[data-offer-chip="email"] {
    z-index: 4;
  }


}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .opening .hero-media iframe {
    display: none;
  }
}

/* ═══════════════════════════════════════════════
   Portfolio detail pages + fullscreen modal
   ═══════════════════════════════════════════════ */

/* ── Portfolio shell (standalone + modal) ── */

.portfolio-page {
  min-height: 100svh;
  background: rgba(17, 19, 15, .58);
}

.portfolio-shell {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--paper);
  border-radius: clamp(12px, 1.4vw, 18px);
  box-shadow:
    0 0 0 1px var(--line),
    0 56px 160px rgba(17, 19, 15, .34);
  overflow: hidden;
}

.portfolio-page .portfolio-shell {
  position: fixed;
  z-index: 45;
  inset: clamp(10px, 2vw, 22px);
  animation: portfolioShellIn .58s cubic-bezier(.22, 1, .36, 1);
}

@keyframes portfolioShellIn {
  from {
    transform: translate3d(0, calc(100% + 28px), 0);
    opacity: 0;
  }

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.portfolio-chrome {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 28px);
  padding: clamp(12px, 1.8vw, 18px) var(--gutter);
  min-height: 68px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(20px);
}

.portfolio-chrome .brand {
  font-size: clamp(20px, 2vw, 28px);
}

.portfolio-chrome-meta {
  grid-column: 2;
  min-width: 0;
  display: grid;
  gap: 3px;
  justify-items: center;
  text-align: center;
}

.portfolio-chrome-kicker {
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-chrome-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 560;
  font-variation-settings: "opsz" 92, "wght" 560, "SOFT" 20, "WONK" 0;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 520px);
}

.portfolio-chrome > .portfolio-chrome-kicker {
  grid-column: 2;
  justify-self: center;
}

.portfolio-close {
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  transition:
    background .2s ease,
    border-color .2s ease,
    transform .2s ease;
}

.portfolio-close:hover {
  background: var(--mist);
  border-color: var(--ink);
}

.portfolio-scroll,
.modal-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

/* ── Project content ── */

.project-content {
  width: var(--container);
  margin-inline: auto;
  padding-block: clamp(72px, 10vw, 140px);
  display: grid;
  gap: clamp(64px, 9vw, 116px);
}

.project-title {
  font-size: clamp(43px, 7.4vw, 98px);
  line-height: .94;
  margin-bottom: clamp(20px, 2.8vw, 34px);
}

.project-lead {
  max-width: 640px;
  color: var(--stone);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.62;
}

/* ── Meta strip ── */

.project-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-meta-item {
  padding: clamp(20px, 3vw, 36px) clamp(18px, 2.5vw, 28px);
  display: grid;
  gap: 8px;
  align-content: start;
}

.project-meta-item + .project-meta-item {
  border-left: 1px solid var(--line);
}

.meta-label {
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.meta-value {
  color: var(--ink);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.48;
}

.meta-value a {
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .2s ease;
}

.meta-value a:hover {
  border-color: var(--ink);
}

/* ── Description ── */

.project-description {
  max-width: min(680px, 100%);
}

.project-kicker {
  display: block;
  margin-bottom: clamp(16px, 2vw, 26px);
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-description p {
  color: var(--stone);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.68;
}

.project-description p + p {
  margin-top: 1em;
}

/* ── Screenshots ── */

.project-screens {
  display: grid;
  gap: clamp(40px, 6vw, 80px);
}

.screenshot-hero figure {
  position: relative;
  overflow: hidden;
}

.screenshot-hero:not(.screenshot-preview__frame) figure {
  border-radius: 0;
  box-shadow: none;
}

/* Browser chrome: traffic lights left, address bar right */
.screenshot-preview__chrome {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 14px);
  height: 38px;
  padding: 0 clamp(10px, 1.6vw, 14px);
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}

.screenshot-preview__traffic {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.screenshot-preview__traffic span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--stone-2);
}

.screenshot-preview__address {
  flex: 1;
  min-width: 0;
  padding: 5px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--stone);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .2s ease, border-color .2s ease;
}

.screenshot-preview__address:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.screenshot-preview__address:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 2px;
}

.screenshot-hero:not(.screenshot-preview__frame) {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 96px rgba(17, 19, 15, .12);
}

.screenshot-hero:not(.screenshot-preview__frame) .screenshot-preview__chrome {
  border-radius: 0;
}

.screenshot-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-hero figcaption {
  margin-top: 14px;
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
}

.screenshot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(480px, 100%), 1fr));
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
}

.screenshot-item figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 52px rgba(17, 19, 15, .08);
}

.screenshot-item img {
  display: block;
  width: 100%;
  height: auto;
}

.screenshot-item figcaption {
  margin-top: 12px;
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
}

.screenshot-item--wide {
  grid-column: 1 / -1;
}

/* Narrow framed preview (full-page screenshot in a smaller window) */
.screenshot-preview {
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
  justify-items: center;
  width: min(640px, 100%);
  margin-inline: auto;
}

.screenshot-preview__label {
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.screenshot-preview__frame {
  width: 100%;
  padding: clamp(14px, 2vw, 20px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(165deg, #f3f5f1 0%, var(--mist) 48%, #e8ece6 100%);
  box-shadow:
    inset 0 0 0 1px var(--line),
    0 28px 72px rgba(17, 19, 15, .14);
}

.screenshot-preview__frame.screenshot-hero figure {
  box-shadow:
    0 0 0 1px rgba(17, 19, 15, .05),
    0 18px 48px rgba(17, 19, 15, .1);
}

/* ── Portfolio hero: copy left, scrolling preview right ── */

.project-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 42%);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}

.project-hero-copy {
  display: grid;
  gap: clamp(40px, 5.5vw, 72px);
  min-width: 0;
}

.project-hero-preview {
  position: sticky;
  top: clamp(20px, 3vw, 40px);
  align-self: start;
}

.project-hero-preview .screenshot-preview {
  width: 100%;
  margin-inline: 0;
  justify-items: stretch;
}

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

.screenshot-preview--scroll .screenshot-preview__frame {
  display: grid;
  gap: 0;
  padding: clamp(12px, 1.6vw, 18px);
}

.screenshot-preview--scroll .screenshot-hero figure,
.screenshot-preview--scroll .screenshot-preview__viewport {
  margin: 0;
}

.screenshot-preview__viewport {
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 15;
  border-radius: 0 0 calc(var(--radius) - 2px) calc(var(--radius) - 2px);
}

.screenshot-preview--fit-shot .screenshot-preview__viewport {
  aspect-ratio: 1800 / 1096;
}

.project-hero-preview .screenshot-preview--fit-shot .screenshot-preview__viewport {
  aspect-ratio: 1800 / 1019;
}

.screenshot-preview__caption {
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
  text-align: center;
  max-width: 34ch;
}

.screenshot-preview--scroll .screenshot-preview__viewport img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  transform: translateY(0);
  will-change: transform;
}

/* ── Interactive hotspot showcase (portfolio case studies) ── */

.project-showcase {
  display: grid;
  gap: clamp(48px, 7vw, 88px);
}

.project-showcase--full {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-block: clamp(56px, 8vw, 104px);
  padding-inline: var(--gutter);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--mist) 0%, #fff 28%, #fff 100%);
}

.project-showcase__inner {
  width: var(--container);
  max-width: 100%;
  margin-inline: auto;
  display: grid;
  gap: clamp(48px, 7vw, 88px);
}

.project-showcase__intro {
  max-width: min(720px, 100%);
}

.project-showcase__intro h2 {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: var(--serif);
  font-size: clamp(28px, 3.85vw, 48px);
  font-weight: 560;
  font-variation-settings: "opsz" 92, "wght" 560, "SOFT" 20, "WONK" 0;
  line-height: 1.02;
}

.project-showcase__hint {
  margin: clamp(12px, 1.6vw, 18px) 0 0;
  color: var(--stone);
  font-size: 15px;
  font-weight: 650;
}

.project-showcase__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(56px, 8vw, 104px);
}

.hotspot-showcase {
  position: relative;
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.hotspot-showcase__header {
  display: grid;
  gap: 10px;
  max-width: min(640px, 100%);
}

.hotspot-showcase__step {
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hotspot-showcase__header h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 2.45vw, 32px);
  font-weight: 560;
  font-variation-settings: "opsz" 92, "wght" 560, "SOFT" 20, "WONK" 0;
  line-height: 1.08;
}

.hotspot-showcase__header p {
  margin: 0;
  color: var(--stone);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
}

.hotspot-showcase__figure {
  display: grid;
  gap: 14px;
  margin: 0;
}

.hotspot-stage {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(17, 19, 15, .06),
    0 28px 88px rgba(17, 19, 15, .14);
  background: #f7f4f0;
}

.hotspot-stage img {
  display: block;
  width: 100%;
  height: auto;
}

/* Full-resolution assets, scaled down for layout (sharp on retina) */
.hotspot-stage--display {
  width: min(1100px, 100%);
  margin-inline: auto;
}

.hotspot-stage--display img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.hotspot-showcase__duo {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 32px);
  align-items: start;
  max-width: min(1180px, 100%);
}

.hotspot-showcase__duo .hotspot-showcase__figure {
  min-width: 0;
}

.hotspot-stage--login-panel,
.hotspot-stage--dashboard-panel {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 780px) {
  .hotspot-showcase__duo {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hotspot-stage--login-panel {
    width: min(420px, 100%);
    margin-inline: auto;
  }
}

.hotspot-showcase__stack {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.hotspot-showcase[data-hotspot-showcase-id="termine"] .hotspot-showcase__stack .hotspot-stage--display {
  width: min(940px, 90%);
}

.hotspot-showcase[data-hotspot-showcase-id="termine"] .hotspot-showcase__figure--compact .hotspot-stage--display {
  width: min(720px, 76%);
}

.hotspot-showcase__figure figcaption {
  order: -1;
  margin: 0;
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.hotspot-marker {
  --hotspot-glow: rgba(201, 137, 122, .52);
  --hotspot-core: #c9897a;
  position: absolute;
  left: var(--hotspot-x, 50%);
  top: var(--hotspot-y, 50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hotspot-marker::before,
.hotspot-marker::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.hotspot-marker::before {
  background: var(--hotspot-glow);
  animation: hotspotPulse 2.4s ease-out infinite;
}

.hotspot-marker::after {
  inset: 11px;
  background: var(--hotspot-core);
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, .92),
    0 8px 24px rgba(17, 19, 15, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hotspot-marker:hover::after,
.hotspot-marker.is-active::after {
  transform: scale(1.12);
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .96),
    0 12px 32px rgba(17, 19, 15, .28);
}

.hotspot-marker:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
}

@keyframes hotspotPulse {
  0% {
    transform: scale(.72);
    opacity: .85;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.hotspot-tooltip {
  position: fixed;
  z-index: 100000;
  width: min(340px, calc(100vw - 28px));
  max-height: min(72vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(16px, 2vw, 20px) clamp(18px, 2.2vw, 22px);
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  background: #fff;
  box-shadow:
    0 22px 56px rgba(17, 19, 15, .2),
    0 0 0 1px rgba(17, 19, 15, .05);
  color: var(--ink);
  pointer-events: auto;
  visibility: hidden;
  transform: translate(-50%, 0) translateY(8px) scale(.98);
  opacity: 0;
  transition:
    opacity .28s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1),
    visibility 0s linear .32s;
}

.hotspot-tooltip.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0) translateY(0) scale(1);
  transition:
    opacity .28s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1),
    visibility 0s;
}

[data-portfolio-modal] > .hotspot-tooltip {
  z-index: 30;
}

.hotspot-tooltip__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 560;
  line-height: 1.15;
}

.hotspot-tooltip__list {
  margin: 0;
  padding: 0 0 0 1.1em;
  display: grid;
  gap: 6px;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.5;
}

.hotspot-tooltip__detail {
  margin: 12px 0 0;
  color: var(--stone);
  font-size: 14px;
  line-height: 1.58;
}

.hotspot-tooltip__detail + .hotspot-tooltip__detail {
  margin-top: 8px;
}

@media (max-width: 620px) {
  .hotspot-marker {
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
  }

  .hotspot-tooltip {
    width: min(300px, calc(100vw - 56px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hotspot-marker::before {
    animation: none;
    opacity: .35;
    transform: scale(1);
  }

  .hotspot-tooltip {
    transition-duration: .01ms;
  }
}

/* Video preview stages inside hotspot showcases */
.hotspot-stage--video {
  aspect-ratio: 16 / 9;
  background: #1a1510;
}

.hotspot-stage__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotspot-stage--video.is-previewing .hotspot-stage__video-expand-label {
  opacity: 0;
}

.hotspot-stage__video-expand {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  background: radial-gradient(circle at center, rgba(17, 19, 15, .28), rgba(17, 19, 15, .04) 58%, transparent 72%);
  color: var(--paper);
  cursor: pointer;
  transition: background .28s ease, opacity .35s ease;
}

.hotspot-stage--video.is-previewing .hotspot-stage__video-expand {
  opacity: 0;
  pointer-events: none;
}

.hotspot-stage__video-expand:hover {
  background: radial-gradient(circle at center, rgba(17, 19, 15, .4), rgba(17, 19, 15, .08) 60%, transparent 74%);
}

.hotspot-stage__video-expand-icon {
  width: clamp(58px, 6vw, 76px);
  height: clamp(58px, 6vw, 76px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  background: rgba(17, 19, 15, .58);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
}

.hotspot-stage__video-expand-icon::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 18px solid rgba(255, 255, 255, .92);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  transform: translateX(2px);
}

.hotspot-stage__video-expand-label {
  position: absolute;
  bottom: clamp(18px, 3vw, 28px);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: opacity .28s ease;
}

.hotspot-video-dialog {
  width: min(960px, calc(100vw - 32px));
  max-width: none;
  padding: 0;
  border: none;
  border-radius: var(--radius);
  background: #1a1510;
  color: var(--paper);
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(17, 19, 15, .34);
}

.hotspot-video-dialog::backdrop {
  background: rgba(17, 19, 15, .72);
  backdrop-filter: blur(10px);
}

.hotspot-video-dialog__inner {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.hotspot-video-dialog__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.hotspot-video-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  background: rgba(17, 19, 15, .72);
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

/* Craft / woodworking portfolio variant */
.project-showcase--craft {
  background: linear-gradient(180deg, #f5efe8 0%, #fff 32%, #fff 100%);
}

.hotspot-showcase--craft .hotspot-marker {
  --hotspot-glow: rgba(168, 118, 62, .48);
  --hotspot-core: #a8763e;
}

.hotspot-showcase--craft .hotspot-showcase__step {
  color: #8b5e2c;
}

.hotspot-showcase[data-hotspot-showcase-id="projects"] .hotspot-showcase__figure--compact .hotspot-stage--display {
  width: min(940px, 92%);
}

/* Wellness / sound therapy portfolio variant */
.project-showcase--wellness {
  background: linear-gradient(180deg, #f3f0f7 0%, #fff 32%, #fff 100%);
}

.hotspot-showcase--wellness .hotspot-marker {
  --hotspot-glow: rgba(142, 128, 168, .48);
  --hotspot-core: #8e80a8;
}

.hotspot-showcase--wellness .hotspot-showcase__step {
  color: #6f6288;
}

/* ── Portfolio fullscreen overlay ── */

[data-portfolio-modal] {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  overflow: hidden;
}

[data-portfolio-modal]::backdrop {
  background: rgba(17, 19, 15, .58);
  backdrop-filter: blur(16px) saturate(1.08);
  transition:
    background .45s ease,
    backdrop-filter .45s ease,
    opacity .45s ease,
    display .45s allow-discrete;
}

@starting-style {
  [data-portfolio-modal][open]::backdrop {
    background: rgba(17, 19, 15, 0);
    backdrop-filter: blur(0);
    opacity: 0;
  }
}

[data-portfolio-modal].is-closing::backdrop {
  background: rgba(17, 19, 15, 0);
  backdrop-filter: blur(0);
  opacity: 0;
}

[data-portfolio-modal] .portfolio-shell {
  position: absolute;
  z-index: 1;
  inset: clamp(10px, 2vw, 22px);
  transform: translate3d(0, calc(100% + 28px), 0);
  opacity: 0;
  transition:
    transform .58s cubic-bezier(.22, 1, .36, 1),
    opacity .42s ease;
}

[data-portfolio-modal][open] .portfolio-shell {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

@starting-style {
  [data-portfolio-modal][open] .portfolio-shell {
    transform: translate3d(0, calc(100% + 28px), 0);
    opacity: 0;
  }
}

[data-portfolio-modal].is-closing .portfolio-shell {
  transform: translate3d(0, calc(100% + 28px), 0);
  opacity: 0;
  transition-duration: .42s;
}

.modal-body {
  position: relative;
}

.modal-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-content: center;
  gap: 18px;
  margin: 0;
  padding: var(--gutter);
  color: var(--stone);
  font-size: 14px;
  font-weight: 650;
  text-align: center;
  background: var(--paper);
}

.modal-loading[hidden] {
  display: none;
}

.modal-loading-spinner {
  width: 36px;
  height: 36px;
  margin-inline: auto;
  border: 2px solid var(--line);
  border-top-color: var(--clay);
  border-radius: 50%;
  animation: modalSpin .75s linear infinite;
}

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

.modal-content {
  min-height: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .45s ease .08s,
    transform .5s cubic-bezier(.22, 1, .36, 1) .08s;
}

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

.modal-content .project-content {
  padding-block: clamp(48px, 7vw, 96px);
}

/* ── Portfolio mobile ── */

@media (max-width: 980px) {
  .project-hero-layout {
    grid-template-columns: 1fr;
    gap: clamp(36px, 6vw, 56px);
  }

  .project-hero-preview {
    position: static;
    order: -1;
  }

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

  .project-meta-item:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }

  .project-meta-item:nth-child(odd) {
    border-left: none;
  }
}

@media (max-width: 620px) {
  .project-title {
    font-size: clamp(35px, 11vw, 56px);
  }

  .project-meta {
    grid-template-columns: 1fr;
  }

  .project-meta-item + .project-meta-item {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .screenshot-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .portfolio-page .portfolio-shell,
  [data-portfolio-modal] .portfolio-shell {
    inset: 0;
    border-radius: 0;
  }

  .portfolio-chrome .brand {
    font-size: clamp(18px, 5.5vw, 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-page .portfolio-shell,
  [data-portfolio-modal] .portfolio-shell,
  [data-portfolio-modal]::backdrop,
  .modal-content {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }

  .modal-loading-spinner {
    animation: none;
    border-top-color: var(--line);
  }

  .work-expand {
    opacity: 1;
    transform: none;
  }
}

/* ── Project CTA ── */

.project-testimonial-block {
  width: min(820px, 100%);
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 88px);
  display: grid;
  gap: clamp(22px, 3vw, 32px);
  justify-items: center;
  text-align: center;
}

.project-testimonial-kicker {
  margin: 0;
  color: var(--clay);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-testimonial {
  width: 100%;
  margin: 0;
}

.project-testimonial.testimonial-card {
  padding: 0;
  border-top: none;
}

.project-testimonial blockquote {
  margin-inline: auto;
}

.project-testimonial figcaption {
  justify-items: center;
}

.project-testimonial figcaption a {
  margin-inline: auto;
}

.project-cta {
  padding-block: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}

.project-cta-kicker {
  display: block;
  margin-bottom: clamp(10px, 1.4vw, 14px);
  color: var(--clay);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-cta h2 {
  font-size: clamp(23px, 3vw, 34px);
  margin-bottom: clamp(14px, 2vw, 20px);
}

.project-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 650;
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  transition: opacity .2s ease;
}

.project-cta-link:hover {
  opacity: .68;
}

/* ── Prev / Next nav ── */

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.project-nav-item {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 22px);
  padding: clamp(28px, 4vw, 52px);
  transition: background .22s ease;
}

.project-nav-item:hover {
  background: var(--mist);
}

.project-nav-item--next {
  border-left: 1px solid var(--line);
  align-items: flex-end;
  text-align: right;
}

.project-nav-direction {
  color: var(--stone);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-nav-preview {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.project-nav-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: scale .4s ease;
}

.project-nav-item:hover .project-nav-preview img {
  scale: 1.04;
}

.project-nav-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2.35vw, 31px);
  font-variation-settings: "opsz" 92, "wght" 560, "SOFT" 20, "WONK" 0;
  line-height: 1.05;
}

@media (max-width: 620px) {
  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-nav-item--next {
    border-left: none;
    border-top: 1px solid var(--line);
    align-items: flex-start;
    text-align: left;
  }
}
