@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("assets/fonts/Poppins/Poppins-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: "Indie Flower";
  src: url("assets/fonts/IndieFlower-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #fff9f2;
  --surface-soft: rgba(255, 249, 242, 0.78);
  --line: #e9ded3;
  --ink: #181513;
  --muted: #685f58;
  --accent: #dd701b;
  --accent-soft: #fbe4d2;
  --shadow: 0 24px 40px rgba(57, 33, 14, 0.16);
  --page-width: min(100% - 120px, 1320px);
  --content-width: min(100% - 120px, 986px);
  --projects-width: min(100% - 120px, 978px);
  --radius-xl: 30px;
  --radius-lg: 26px;
  --radius-md: 23px;
}

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

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

body.js-enabled {
  opacity: 0;
  transition: opacity 220ms ease;
}

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

body.js-enabled.is-page-leaving {
  opacity: 0;
}

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

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

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

.cursor-outer,
.cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-outer {
  width: 42px;
  height: 42px;
  border: 1.5px solid rgba(221, 112, 27, 0.42);
  border-radius: 50%;
  background: rgba(251, 228, 210, 0.16);
  box-shadow: 0 10px 30px rgba(221, 112, 27, 0.18);
  backdrop-filter: blur(6px);
}

.cursor-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.cursor-outer.is-visible,
.cursor-inner.is-visible {
  opacity: 1;
}

.page-shell {
  width: 100%;
  padding: 24px 0 72px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 77px;
  height: 38px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  position: absolute;
  top: 32px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 22px;
  transform: translateX(-50%);
  opacity: 1;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.site-nav a {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #f5911d;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-18px) scale(0.96);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.site-header.is-scrolled .menu-toggle {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.site-header.is-scrolled .site-nav {
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(-50% + 56px));
}

.site-header.is-scrolled .site-nav.is-open {
  position: absolute;
  top: calc(100% + 10px);
  left: auto;
  right: 28px;
  display: flex;
  width: min(280px, calc(100vw - 40px));
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 249, 242, 0.96);
  box-shadow: var(--shadow);
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

main {
  position: relative;
  display: grid;
  gap: 124px;
  margin-top: 124px;
}

section {
  position: relative;
}

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

.hero-showcase {
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-intro {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 0;
}

.hero-name {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.hero-title {
  margin: 26px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 720px;
  font-size: 104px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-align: center;
}

.hero-title-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  white-space: nowrap;
}

.hero-title-line-top {
  gap: 8px;
}

.hero-title-line-bottom {
  margin-top: -10px;
}

.hero-title-main {
  display: inline;
}

.hero-title-dot {
  color: #f5911e;
}

.hero-title-handwritten {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Indie Flower", "Poppins", sans-serif;
  font-size: 147px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: #f5911e;
  transform: rotate(3.5deg);
}

.hero-title-cycle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--hero-cycle-width, auto);
  min-width: 1ch;
  white-space: nowrap;
  transition: width 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-title-cycle-measure {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  height: 0;
  overflow: hidden;
}

.hero-title-handwritten-word {
  will-change: transform, opacity, filter;
  transition:
    transform 340ms ease,
    opacity 340ms ease,
    filter 340ms ease;
}

.hero-title-handwritten-word.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: rotate(3.5deg) translateY(0);
}

.hero-title-handwritten-word.is-entering {
  opacity: 0;
  filter: blur(8px);
  transform: rotate(3.5deg) translateY(-22px);
}

.hero-title-handwritten-word.is-exiting {
  opacity: 0;
  filter: blur(8px);
  transform: rotate(3.5deg) translateY(22px);
}

.hero-stage {
  position: relative;
  width: 682px;
  min-height: 356px;
  margin-top: 64px;
}

.gallery-card {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 240px;
  height: 258px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--radius-xl);
  box-shadow: 0 26px 48px rgba(57, 33, 14, 0.17);
  transform:
    translate3d(
      calc(-50% + var(--card-base-x, 0px) + var(--card-hover-x, 0px) + var(--card-parallax-x, 0px)),
      calc(-50% + var(--card-base-y, 0px) + var(--card-hover-y, 0px) + var(--card-parallax-y, 0px)),
      0
    )
    rotate(calc(var(--card-base-rotate, 0deg) + var(--card-hover-rotate, 0deg)));
  transition:
    box-shadow 240ms ease,
    filter 240ms ease;
  will-change: transform;
}

.gallery-card:hover,
.gallery-card:focus-within {
  box-shadow: 0 34px 64px rgba(57, 33, 14, 0.24);
  filter: saturate(1.03);
}

.gallery-card-brand {
  --card-base-x: -176px;
  --card-base-y: 20px;
  --card-base-rotate: 4deg;
  background: linear-gradient(90deg, #dd701b 8%, #f5911e 88%);
  color: #fff9f2;
  transform-origin: bottom right;
  z-index: 10;
}

.gallery-card-ui {
  --card-base-x: 2px;
  --card-base-y: -6px;
  --card-base-rotate: -6deg;
  background: linear-gradient(90deg, #3d337e 0%, #7967df 100%);
  color: #fff9f2;
  transform-origin: bottom left;
  z-index: 20;
}

.gallery-card-print {
  --card-base-x: 184px;
  --card-base-y: 18px;
  --card-base-rotate: 3deg;
  background: linear-gradient(90deg, #f397a9 0%, #dd607d 100%);
  color: #fff9f2;
  transform-origin: bottom right;
  z-index: 30;
}

.gallery-card-copy {
  position: absolute;
  inset: auto auto 28px 28px;
  z-index: 1;
  display: grid;
  gap: 9px;
}

.gallery-card-copy p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.gallery-card-copy strong {
  font-size: 33px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-outro {
  width: 760px;
  display: grid;
  justify-items: center;
  gap: 22px;
  margin-top: 0;
}

.hero-text {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

.hero-actions,
.contact-actions,
.projects-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 220ms ease,
    background-size 320ms ease;
}

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

.button-primary {
  background: #f5911e;
  color: #fff9f2;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
  color: var(--ink);
}

.hero-actions .button,
.projects-cta .button {
  background-repeat: no-repeat;
  background-position: left center;
}

.hero-actions .button-primary,
.projects-cta .button-primary {
  background-color: #f5911e;
  background-image:
    linear-gradient(#181513, #181513),
    linear-gradient(#f5911e, #f5911e);
  background-size:
    0 100%,
    100% 100%;
}

.hero-actions .button-primary:hover,
.hero-actions .button-primary:focus-visible,
.projects-cta .button-primary:hover,
.projects-cta .button-primary:focus-visible {
  background-size:
    100% 100%,
    100% 100%;
}

.hero-actions .button-secondary {
  background-color: rgba(255, 255, 255, 0.68);
  border-color: var(--accent);
  background-image:
    linear-gradient(#f5911e, #f5911e),
    linear-gradient(rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.68));
  background-size:
    0 100%,
    100% 100%;
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  color: #fff9f2;
  border-color: #f5911e;
  background-size:
    100% 100%,
    100% 100%;
}

.manifesto,
.contact {
  width: var(--content-width);
  margin: 0 auto;
}

.projects {
  width: var(--projects-width);
  margin: 0 auto;
}

.projects .section-heading {
  gap: 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 40px;
}

.section-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.section-badge-handwritten {
  width: 215px;
  height: 70px;
}

.projects .section-badge-handwritten {
  margin: 0 0 -18px -18px;
  z-index: 0;
}

.section-badge-handwritten img {
  display: block;
  width: 100%;
  height: 100%;
}

.section-badge-manifesto {
  width: 157px;
  height: 51px;
  margin: 6px 0 -18px -12px;
  transform: rotate(-8deg);
  z-index: 0;
}

.section-badge-manifesto img {
  display: block;
  width: 100%;
  height: 100%;
}

.section-badge-manifesto span {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: "Indie Flower", "Poppins", sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.01em;
  transform: translateY(-2px);
}

.section-heading h2,
.contact-title {
  margin: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.manifesto .section-heading h2 {
  position: relative;
  z-index: 1;
}

.projects .section-heading h2 {
  position: relative;
  z-index: 1;
}

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

.manifesto-grid {
  display: grid;
  gap: 28px;
  justify-content: center;
}

.manifesto-row {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.manifesto-card {
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(221, 112, 27, 0.12);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      280px circle at var(--glow-x) var(--glow-y),
      rgba(221, 112, 27, calc(var(--glow-opacity) * 0.22)) 0%,
      rgba(221, 112, 27, calc(var(--glow-opacity) * 0.14)) 22%,
      rgba(221, 112, 27, 0) 100%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 242, 0.96));
  box-shadow:
    0 24px 60px rgba(40, 20, 8, 0.045),
    0 1px 0 rgba(255, 255, 255, 0.96) inset,
    0 -16px 26px rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(14px) saturate(1.04);
  -webkit-backdrop-filter: blur(14px) saturate(1.04);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.manifesto-card::before,
.manifesto-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.manifesto-card::before {
  inset: -1px;
  border: 1px solid transparent;
  background:
    radial-gradient(
      220px circle at var(--glow-x) var(--glow-y),
      rgba(221, 112, 27, calc(var(--glow-opacity) * 1)) 0%,
      rgba(221, 112, 27, calc(var(--glow-opacity) * 0.38)) 34%,
      rgba(221, 112, 27, 0) 70%
    ) border-box;
  -webkit-mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) padding-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: calc(var(--glow-opacity) * 1);
}

.manifesto-card::after {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.22) 18%,
      rgba(255, 255, 255, 0) 42%
    ),
    radial-gradient(
      150px circle at var(--glow-x) var(--glow-y),
      rgba(255, 255, 255, calc(var(--glow-opacity) * 0.82)) 0%,
      rgba(255, 255, 255, 0) 70%
    );
  opacity: calc(0.54 + (var(--glow-opacity) * 0.46));
}

.manifesto-card:hover,
.manifesto-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(221, 112, 27, 0.2);
  box-shadow:
    0 30px 70px rgba(40, 20, 8, 0.065),
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 -20px 38px rgba(255, 255, 255, 0.62) inset;
}

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

.manifesto-card-wide {
  width: 526px;
}

.manifesto-card-narrow {
  width: 428px;
}

.manifesto-card-small {
  width: 428px;
}

.manifesto-card-top {
  min-height: 186px;
}

.manifesto-card-bottom {
  min-height: 188px;
}

.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff9f2;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.06em;
}

.manifesto-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 18px;
  height: 17px;
  transform: translate3d(0, 0, 0) rotate(-45deg);
  transform-origin: center;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.manifesto-card-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.manifesto-card:hover .manifesto-card-arrow,
.manifesto-card:focus-within .manifesto-card-arrow {
  transform: translate3d(3px, 0, 0) rotate(0deg);
}

.manifesto-card h3 {
  margin: 12px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
}

.manifesto-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 24px;
}

.manifesto-card-body span {
  display: block;
}

.manifesto-card-body span + span {
  margin-top: 0;
}

.manifesto-card-strategy p:last-child {
  max-width: 484px;
}

.manifesto-card-impact p:last-child {
  max-width: 357px;
}

.manifesto-card-custom p:last-child {
  max-width: 384px;
}

.manifesto-card-coherence p:last-child {
  max-width: 461px;
}

.editorial-words {
  width: 100%;
  overflow: hidden;
}

.editorial-marquee {
  width: 100%;
  overflow: hidden;
  padding-block: 18px 10px;
}

.editorial-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: editorial-marquee 28s linear infinite;
}

.editorial-marquee-group {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
}

.editorial-words h2 {
  display: block;
  margin: 0;
  font-size: clamp(64px, 8vw, 115px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.06em;
  white-space: nowrap;
  padding-bottom: 0.12em;
}

.editorial-dot {
  width: 21px;
  height: 21px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes editorial-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.projects {
  display: grid;
  gap: 34px;
}

.projects-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 42px;
  align-items: start;
}

.projects-gallery-stage {
  min-height: 706px;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: 208px 208px 208px;
  gap: 22px;
}

.project-shot {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 44px rgba(57, 33, 14, 0.12);
}

.project-shot-a {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.project-shot-b {
  grid-column: 3 / span 4;
  grid-row: 1;
}

.project-shot-c {
  grid-column: 1 / span 3;
  grid-row: 2;
}

.project-shot-d {
  grid-column: 4 / span 3;
  grid-row: 2;
}

.project-shot-e {
  grid-column: 1 / span 2;
  grid-row: 3;
}

.project-shot-f {
  grid-column: 3 / span 4;
  grid-row: 3;
}

.project-shot-link {
  display: block;
  width: 100%;
  height: 100%;
}

.project-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--media-position, 50% 50%);
  filter: grayscale(1) brightness(0.82);
  transition:
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms ease;
}

.project-shot-link:hover img,
.project-shot-link:focus-visible img,
.project-shot.is-highlighted img {
  transform: scale(1.06);
  filter: grayscale(0) brightness(1);
}

.projects-selector {
  align-self: center;
  display: grid;
  gap: 22px;
  padding-top: 0;
}

.project-selector-item {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(24, 21, 19, 0.42);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.project-selector-item:hover,
.project-selector-item:focus-visible,
.project-selector-item.is-active {
  color: var(--ink);
  transform: translateX(3px);
}

.project-selector-bullet {
  width: 20px;
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: rgba(221, 112, 27, 0.32);
  transition:
    background 220ms ease,
    width 220ms ease;
}

.project-selector-item.is-active .project-selector-bullet {
  width: 20px;
  background: var(--accent);
}

.project-selector-copy {
  display: grid;
  gap: 8px;
}

.project-selector-copy strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.project-selector-copy span {
  color: rgba(24, 21, 19, 0.58);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-transform: none;
}

.project-selector-item.is-active .project-selector-copy span {
  color: rgba(24, 21, 19, 0.76);
}

.projects-cta {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 0;
}

.contact-block {
  display: grid;
  justify-items: center;
  gap: 22px;
  width: min(100%, 592px);
  margin: 0 auto;
}

.contact-title {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.05em;
  text-align: center;
}

.contact-title-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 10px;
}

.contact-title-line-accented {
  position: relative;
  isolation: isolate;
}

.contact-title-ring {
  position: absolute;
  left: 72%;
  top: 56%;
  width: 3.15em;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.contact-title-line-accented > span {
  position: relative;
  z-index: 1;
}

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

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
  flex-wrap: wrap;
}

.contact-link-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.contact-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-link-icon img {
  display: block;
}

.contact-link-label {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.sr-anchor {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1100px) {
  :root {
    --page-width: min(100% - 48px, 1000px);
    --content-width: min(100% - 48px, 986px);
    --projects-width: min(100% - 48px, 978px);
  }

  .hero-title {
    font-size: 84px;
  }

  .hero-title-handwritten {
    font-size: 118px;
  }

  .hero-stage {
    width: 560px;
    min-height: 320px;
  }

  .gallery-card {
    width: 200px;
    height: 216px;
  }

  .gallery-card-brand {
    --card-base-x: -146px;
    --card-base-y: 18px;
  }

  .gallery-card-ui {
    --card-base-x: 0px;
    --card-base-y: -2px;
  }

  .gallery-card-print {
    --card-base-x: 152px;
    --card-base-y: 18px;
  }

  .manifesto-grid {
    width: 100%;
  }

  .manifesto-row {
    width: 100%;
    flex-direction: column;
  }

  .manifesto-card-wide,
  .manifesto-card-narrow,
  .manifesto-card-small {
    width: 100%;
    height: auto;
  }

  .projects-showcase {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }

  .projects-gallery-stage {
    min-height: 640px;
  }

  .project-gallery {
    gap: 18px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 190px 190px 190px;
  }

  .project-selector-copy strong {
    font-size: 24px;
  }
}

@media (max-width: 920px) {
  :root {
    --page-width: min(100% - 36px, 100%);
    --content-width: min(100% - 36px, 100%);
    --projects-width: min(100% - 36px, 100%);
  }

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

  .site-nav {
    top: 24px;
    gap: 18px;
  }

  main {
    gap: 104px;
    margin-top: 104px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(68px, 9vw, 84px);
  }

  .hero-title-handwritten {
    font-size: clamp(98px, 13vw, 118px);
  }

  .hero-stage {
    width: min(100%, 620px);
    min-height: 294px;
    margin-top: 48px;
  }

  .gallery-card {
    width: 190px;
    height: 206px;
  }

  .gallery-card-brand {
    --card-base-x: -160px;
    --card-base-y: 18px;
  }

  .gallery-card-ui {
    --card-base-x: 2px;
    --card-base-y: -8px;
  }

  .gallery-card-print {
    --card-base-x: 158px;
    --card-base-y: 18px;
  }

  .gallery-card-copy {
    inset: auto auto 22px 22px;
  }

  .gallery-card-copy strong {
    font-size: 28px;
    line-height: 1;
  }

  .hero-outro {
    width: min(100%, 680px);
    gap: 18px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 28px;
  }

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

  .section-heading h2,
  .contact-title {
    font-size: clamp(44px, 6vw, 54px);
  }

  .editorial-marquee-group {
    gap: 32px;
    padding-right: 32px;
  }

  .editorial-dot {
    width: 16px;
    height: 16px;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-gallery-stage {
    min-height: 640px;
  }

  .project-gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: 190px 190px 190px;
    gap: 16px;
  }

  .projects-selector {
    align-self: stretch;
    padding-top: 0;
    gap: 24px;
  }

  .project-selector-item {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 12px;
    padding: 0;
  }

  .project-selector-copy strong {
    font-size: 24px;
  }

  .project-selector-copy span {
    font-size: 15px;
    line-height: 1.4;
  }

  .projects-cta {
    margin-top: 2px;
  }

  .contact-block {
    width: min(100%, 640px);
  }

  .contact-links {
    width: 100%;
    gap: 18px;
  }

  .contact-link-item {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  :root {
    --page-width: min(100% - 20px, 100%);
    --content-width: min(100% - 20px, 100%);
    --projects-width: min(100% - 20px, 100%);
  }

  .page-shell {
    padding-top: 32px;
    padding-bottom: 72px;
  }

  .site-header {
    padding: 0 27px;
    align-items: center;
    width: 100vw;
    max-width: 100vw;
    isolation: isolate;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 27px;
    left: auto;
    display: none;
    width: min(280px, calc(100vw - 54px));
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 242, 0.98);
    box-shadow: 0 16px 34px rgba(24, 21, 19, 0.12);
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .menu-toggle {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .site-nav.is-open,
  .site-header.is-scrolled .site-nav.is-open {
    position: absolute;
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.is-scrolled .site-nav {
    transform: none;
  }

  main {
    gap: 64px;
    margin-top: 52px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(52px, 16vw, 72px);
    gap: 2px;
  }

  .hero-intro {
    width: min(100%, 309px);
    max-width: calc(100vw - 36px);
    overflow: hidden;
  }

  .hero-title-line {
    display: inline-flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
  }

  .hero-title-line-top {
    gap: 4px;
  }

  .hero-title-line-bottom {
    margin-top: -4px;
  }

  .hero-title-handwritten {
    font-size: clamp(72px, 20vw, 110px);
  }

  .hero-stage {
    width: min(100%, 251px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 104px;
    margin-top: 34px;
  }

  .gallery-card {
    position: relative;
    min-height: 116px;
    border-radius: 30px;
    left: auto;
    top: auto;
    right: auto;
    margin-bottom: -21px;
    box-shadow: var(--shadow);
    transform: none;
  }

  .gallery-card-brand {
    width: 240px;
    height: 132px;
    transform: rotate(4deg);
  }

  .gallery-card-ui {
    width: 240px;
    height: 116px;
    transform: rotate(-6deg);
  }

  .gallery-card-print {
    width: 240px;
    height: 116px;
    margin-bottom: 0;
    transform: rotate(3deg);
  }

  .gallery-card-copy {
    inset: auto auto 28px 28px;
    gap: 6px;
  }

  .gallery-card-copy p {
    font-size: 13px;
    line-height: 18px;
  }

  .gallery-card-copy strong {
    font-size: 20px;
    line-height: 20px;
  }

  .hero-outro {
    width: min(100%, 308px);
    gap: 20px;
  }

  .hero-text {
    font-size: 17px;
    line-height: 26px;
  }

  .hero-actions {
    flex-direction: column;
    width: 243px;
    gap: 14px;
  }

  .hero-actions .button-primary {
    width: 134px;
  }

  .hero-actions .button-secondary {
    width: 243px;
  }

  .section-heading h2,
  .contact-title {
    max-width: 100%;
    font-size: clamp(36px, 9vw, 54px);
    line-height: 1.04;
    overflow-wrap: break-word;
  }

  .manifesto {
    width: min(100%, 354px);
  }

  .projects {
    width: min(calc(100vw - 48px), 342px);
    justify-self: center;
  }

  .contact {
    width: min(100%, 302px);
  }

  .projects .section-badge-handwritten {
    display: none;
  }

  .section-badge-manifesto {
    display: none;
  }

  .section-badge-manifesto span {
    font-size: 22px;
  }

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

  .manifesto-row {
    flex-direction: column;
    gap: 16px;
  }

  .manifesto-card-wide,
  .manifesto-card-narrow,
  .manifesto-card-small {
    width: 100%;
    height: auto;
  }

  .projects-showcase {
    gap: 22px;
  }

  .projects-gallery-stage {
    display: none;
    min-height: 0;
  }

  .projects-selector {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
  }

  .project-selector-item {
    --project-tile-position: 50% 50%;
    position: relative;
    isolation: isolate;
    aspect-ratio: 1.55;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 0;
    padding: 22px;
    border-radius: 14px;
    background: #181513;
    color: #fff9f2;
    box-shadow: 0 18px 34px rgba(57, 33, 14, 0.16);
    transform: none;
  }

  .project-selector-item::before,
  .project-selector-item::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .project-selector-item::before {
    z-index: -2;
    background-image: var(--project-tile-image);
    background-position: var(--project-tile-position);
    background-size: cover;
    filter: brightness(0.82) saturate(1.02);
    transform: scale(1.01);
    transition:
      filter 220ms ease,
      transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .project-selector-item::after {
    z-index: -1;
    background:
      linear-gradient(
        0deg,
        rgba(24, 21, 19, 0.82) 0%,
        rgba(24, 21, 19, 0.62) 34%,
        rgba(24, 21, 19, 0.2) 64%,
        rgba(24, 21, 19, 0) 100%
      );
  }

  .project-selector-item:hover,
  .project-selector-item:focus-visible,
  .project-selector-item.is-active {
    color: #fff9f2;
    transform: none;
  }

  .project-selector-item:hover::before,
  .project-selector-item:focus-visible::before,
  .project-selector-item.is-active::before {
    filter: brightness(0.98) saturate(1.06);
    transform: scale(1.06);
  }

  .project-selector-item[data-project-trigger="project-01"] {
    --project-tile-image: url("assets/projects/section-1/cover.png");
    --project-tile-position: 68% 50%;
  }

  .project-selector-item[data-project-trigger="project-02"] {
    --project-tile-image: url("assets/projects/section-2/cover-clecod.webp");
    --project-tile-position: 50% 50%;
  }

  .project-selector-item[data-project-trigger="project-03"] {
    --project-tile-image: url("assets/projects/section-3/cover.webp");
    --project-tile-position: 50% 18%;
  }

  .project-selector-item[data-project-trigger="project-04"] {
    --project-tile-image: url("assets/projects/section-4/cover.png");
    --project-tile-position: 50% 50%;
  }

  .project-selector-item[data-project-trigger="project-05"] {
    --project-tile-image: url("assets/projects/section-5/cover-easy-ta-vie.png");
    --project-tile-position: 50% 50%;
  }

  .project-selector-item[data-project-trigger="project-06"] {
    --project-tile-image: url("assets/projects/section-6/cover-sawle.webp");
    --project-tile-position: 50% 50%;
  }

  .project-selector-bullet {
    display: none;
  }

  .project-selector-copy {
    position: relative;
    z-index: 1;
    gap: 6px;
    width: 100%;
  }

  .project-selector-copy strong {
    color: inherit;
    font-size: 28px;
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  .project-selector-copy span {
    display: -webkit-box;
    overflow: hidden;
    color: rgba(255, 249, 242, 0.84);
    font-size: 16px;
    line-height: 1.32;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .project-selector-item.is-active .project-selector-copy span {
    color: rgba(255, 249, 242, 0.9);
  }

  .projects-cta {
    grid-column: 1 / -1;
    align-items: stretch;
    margin-top: 4px;
  }

  .projects-cta .button {
    width: 100%;
  }

  .contact-block {
    width: min(100%, 302px);
    gap: 26px;
  }

  .contact-title {
    font-size: 28px;
    line-height: 1.08;
    width: 100%;
  }

  .contact-title-line {
    flex-wrap: nowrap;
    gap: 0 5px;
  }

  .contact-title-line:first-child {
    width: 100%;
    justify-content: center;
  }

  .contact-title-line-accented {
    width: 100%;
    justify-content: center;
  }

  .contact-title-ring {
    left: 60%;
    top: 28px;
    width: 93px;
    transform: translate(-50%, -50%);
  }

  .contact-links {
    width: 100%;
    flex-direction: column;
    gap: 21px;
  }

  .contact-link-item {
    width: 228px;
    min-height: 60px;
    padding: 0 30px;
    border-radius: 63px;
    background: var(--accent);
    color: #fff9f2;
    justify-content: center;
    text-align: center;
    flex-wrap: nowrap;
  }

  .contact-link-item:first-child {
    width: 270px;
  }

  .contact-link-label {
    font-size: 19px;
    color: inherit;
  }

  .contact-link-icon img {
    filter: brightness(0) invert(1);
  }
}

@media (max-width: 560px) {
  :root {
    --page-width: min(100% - 16px, 100%);
    --content-width: min(100% - 16px, 100%);
    --projects-width: min(100% - 16px, 100%);
  }

  .site-header {
    top: 10px;
    padding: 0 18px;
    width: 100vw;
    max-width: 100vw;
  }

  .site-nav {
    right: 18px;
    width: min(280px, calc(100vw - 36px));
  }

  main {
    gap: 80px;
    margin-top: 78px;
  }

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

  .hero-name {
    font-size: 13px;
    line-height: 18px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 0.14em;
    text-align: center;
  }

  .hero-title {
    margin-top: 18px;
    width: min(100%, 342px);
    font-size: clamp(40px, 12vw, 48px);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-title-line-top {
    gap: 2px;
  }

  .hero-title-line-bottom {
    margin-top: 0;
  }

  .hero-title-handwritten {
    font-size: clamp(52px, 15vw, 64px);
  }

  .section-heading h2,
  .contact-title {
    font-size: clamp(34px, 9vw, 40px);
  }

  .hero-stage {
    margin-top: 28px;
    width: min(100%, 251px);
    padding-bottom: 104px;
  }

  .gallery-card {
    border-radius: 24px;
    transform: none;
  }

  .gallery-card-brand {
    width: 240px;
    height: 132px;
  }

  .gallery-card-ui {
    width: 240px;
    height: 116px;
  }

  .gallery-card-print {
    width: 240px;
    height: 116px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 25px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 15px;
  }

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

  .section-heading h2,
  .contact-title {
    line-height: 1.06;
  }

  .contact-title {
    font-size: 28px;
    line-height: 1.08;
  }

  .section-badge-handwritten {
    width: 168px;
    height: auto;
  }

  .projects .section-badge-handwritten {
    display: none;
  }

  .section-badge-manifesto {
    width: 138px;
    height: auto;
    margin: 0 0 -6px -4px;
  }

  .section-badge-manifesto span {
    font-size: 20px;
  }

  .manifesto-grid {
    gap: 16px;
  }

  .manifesto-card {
    padding: 18px;
    border-radius: 22px;
  }

  .manifesto-card h3 {
    margin: 10px 0;
    font-size: 20px;
    line-height: 1.15;
  }

  .manifesto-card p:last-child {
    font-size: 15px;
    line-height: 22px;
  }

  .editorial-marquee {
    padding-block: 8px 2px;
  }

  .editorial-marquee-group {
    gap: 24px;
    padding-right: 24px;
  }

  .editorial-words h2 {
    font-size: clamp(44px, 16vw, 70px);
    line-height: 1.06;
    padding-bottom: 0.1em;
  }

  .editorial-dot {
    width: 13px;
    height: 13px;
  }

  .projects {
    gap: 20px;
  }

  .projects-gallery-stage {
    min-height: 478px;
  }

  .project-gallery {
    grid-template-rows: repeat(12, 24px);
  }

  .project-selector-copy strong {
    font-size: 18px;
  }

  .project-selector-bullet {
    margin-top: 7px;
  }

  .projects-cta {
    gap: 12px;
  }

  .contact-block {
    gap: 22px;
  }

  .contact-title-line {
    gap: 0 6px;
  }

  .contact-title-ring {
    left: 60%;
    top: 28px;
    width: 93px;
  }

  .contact-links {
    gap: 18px;
  }

  .contact-link-item {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .contact-link-icon img {
    width: auto;
    height: 22px;
  }

  .contact-link-label {
    font-size: 16px;
    line-height: 1.3;
  }
}

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

  .button,
  .menu-toggle,
  .site-nav,
  body.js-enabled,
  body.js-enabled .reveal,
  body.js-enabled .reveal.is-visible,
  .gallery-card {
    transition: none;
  }

  .editorial-marquee-track {
    animation: none;
  }

  .manifesto-card-arrow {
    transition: none;
  }

  body.js-enabled .reveal,
  body.js-enabled .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  body.js-enabled,
  body.js-enabled.is-page-ready,
  body.js-enabled.is-page-leaving {
    opacity: 1;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-outer,
  .cursor-inner {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-nav {
    position: fixed !important;
    top: 86px !important;
    right: 18px !important;
    left: auto !important;
    width: min(280px, calc(100vw - 36px)) !important;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 249, 242, 0.98);
    box-shadow: 0 16px 34px rgba(24, 21, 19, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none !important;
  }

  .site-nav.is-open,
  .site-header.is-scrolled .site-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    position: fixed;
    top: 28px;
    right: 18px;
    z-index: 60;
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
  }
}
