@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #2e2929;
  --ink-soft: #655b59;
  --ink-faint: #8a7e7a;
  --cream: #fbf4ec;
  --cream-deep: #f2e3d8;
  --surface: rgba(255, 251, 246, 0.92);
  --surface-strong: #fffaf5;
  --peach: #ffb294;
  --peach-soft: #ffd0bb;
  --coral: #f17e72;
  --coral-deep: #d65c62;
  --lilac: #c9b6da;
  --sun: #ffd77e;
  --night: #171316;
  --night-soft: #241b1e;
  --night-ink: #fff1e8;
  --line: rgba(54, 39, 37, 0.14);
  --line-dark: rgba(255, 239, 231, 0.18);
  --display: "Archivo", "Arial Narrow", Arial, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(72, 40, 33, 0.12);
  --shadow-deep: 0 34px 90px rgba(24, 14, 16, 0.28);
}

html[data-theme="night"] {
  --ink: #fff0e6;
  --ink-soft: #d4bab0;
  --ink-faint: #a98e87;
  --cream: #171316;
  --cream-deep: #241b1e;
  --surface: rgba(39, 28, 31, 0.92);
  --surface-strong: #2a1f22;
  --line: rgba(255, 236, 227, 0.16);
  --shadow-soft: 0 26px 80px rgba(0, 0, 0, 0.28);
}

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

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 178, 148, 0.13), transparent 26rem),
    radial-gradient(circle at 88% 42%, rgba(201, 182, 218, 0.16), transparent 31rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.45;
  transition: background 380ms ease, color 380ms ease;
}

body::after {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(41, 24, 22, 0.75) 0.45px, transparent 0.5px),
    radial-gradient(rgba(41, 24, 22, 0.42) 0.45px, transparent 0.5px);
  background-position: 0 0, 8px 10px;
  background-size: 12px 12px, 17px 17px;
  mix-blend-mode: multiply;
}

html[data-theme="night"] body::after {
  opacity: 0.1;
  background-image:
    radial-gradient(rgba(255, 225, 208, 0.52) 0.45px, transparent 0.5px),
    radial-gradient(rgba(255, 225, 208, 0.3) 0.45px, transparent 0.5px);
  mix-blend-mode: screen;
}

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

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

button {
  border: 0;
  font: inherit;
}

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

::selection {
  color: var(--night);
  background: var(--peach);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 11px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 90;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--peach), var(--coral), var(--lilac));
  box-shadow: 0 0 18px rgba(241, 126, 114, 0.64);
  transition: width 80ms linear;
}

.cursor-glow {
  position: fixed;
  z-index: 75;
  top: var(--cursor-y, -10rem);
  left: var(--cursor-x, -10rem);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 177, 148, 0.24), rgba(255, 177, 148, 0) 67%);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease;
  mix-blend-mode: multiply;
}

.cursor-glow.is-visible {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 17px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid transparent;
  background: rgba(251, 244, 236, 0.77);
  color: var(--ink);
  backdrop-filter: blur(18px) saturate(1.3);
  transition: padding 220ms ease, background 220ms ease, border-color 220ms ease;
}

html[data-theme="night"] .site-header {
  background: rgba(23, 19, 22, 0.78);
}

.site-header.scrolled {
  padding-top: 11px;
  padding-bottom: 11px;
  border-color: var(--line);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-logo-wrap {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 236, 226, 0.55);
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 6px 16px rgba(50, 31, 28, 0.18);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 0.9;
}

.brand-copy strong,
.brand-copy em {
  font-size: 13px;
  font-style: normal;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.brand-copy strong {
  font-weight: 800;
}

.brand-copy em {
  color: var(--coral-deep);
  font-weight: 500;
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.58);
}

html[data-theme="night"] .main-nav {
  background: rgba(44, 31, 34, 0.64);
}

.main-nav a {
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--peach);
  color: var(--night);
  outline: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  white-space: nowrap;
}

.availability i,
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #61bd7b;
  box-shadow: 0 0 0 4px rgba(97, 189, 123, 0.13), 0 0 15px rgba(97, 189, 123, 0.48);
}

.theme-toggle {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  background: var(--peach);
  transform: rotate(12deg);
}

.theme-toggle__sun,
.theme-toggle__moon {
  grid-area: 1 / 1;
  font-size: 18px;
  line-height: 1;
}

html[data-theme="light"] .theme-toggle__moon,
html:not([data-theme]) .theme-toggle__moon {
  display: none;
}

html[data-theme="night"] .theme-toggle__sun {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--peach);
  color: var(--night);
  outline: none;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  margin: 92px clamp(12px, 2.2vw, 34px) 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #2d2023;
  box-shadow: var(--shadow-deep);
}

.hero::before {
  position: absolute;
  z-index: 2;
  top: -16%;
  right: -8%;
  width: 58%;
  height: 62%;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(255, 183, 151, 0.48), rgba(255, 183, 151, 0) 67%);
  filter: blur(24px);
  mix-blend-mode: screen;
}

.hero::after {
  position: absolute;
  z-index: 5;
  inset: 0;
  border: 1px solid rgba(255, 213, 192, 0.22);
  border-radius: inherit;
  pointer-events: none;
  content: "";
}

.hero-image {
  position: absolute;
  z-index: 0;
  inset: -3%;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: 50% 44%;
  opacity: 0.92;
  filter: saturate(0.72) contrast(0.92) brightness(0.78);
  transform: translate(var(--hero-shift-x, 0), var(--hero-shift-y, 0)) scale(1.04);
  transition: transform 1s cubic-bezier(0.2, 0.65, 0.25, 1), filter 380ms ease;
}

.hero-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(27, 21, 24, 0.66), rgba(42, 26, 27, 0.12) 48%, rgba(20, 15, 18, 0.61)),
    linear-gradient(180deg, rgba(31, 20, 23, 0.09) 36%, rgba(20, 14, 17, 0.82) 100%),
    radial-gradient(circle at 50% 86%, rgba(247, 137, 120, 0.27), transparent 47%);
}

.hero-grain {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    repeating-linear-gradient(0deg, rgba(255, 237, 222, 0.07) 0, rgba(255, 237, 222, 0.07) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 20% 24%, rgba(255, 188, 151, 0.27), transparent 21rem);
  mix-blend-mode: screen;
}

.hero-moon {
  position: absolute;
  z-index: 3;
  top: 16%;
  right: 12%;
  width: clamp(120px, 17vw, 250px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 205, 182, 0.68);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 34%, rgba(255, 237, 219, 0.68), rgba(255, 168, 134, 0.19) 45%, transparent 70%);
  box-shadow: 0 0 0 16px rgba(255, 183, 151, 0.06), 0 0 76px rgba(255, 166, 135, 0.4);
  opacity: 0.7;
  transform: translate(var(--hero-shift-x, 0), var(--hero-shift-y, 0));
  transition: transform 1s cubic-bezier(0.2, 0.65, 0.25, 1);
}

.hero-project-strip {
  position: absolute;
  z-index: 4;
  right: 8%;
  bottom: 31%;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  transform: rotate(-3deg);
}

.hero-project-chip {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 229, 212, 0.5);
  border-radius: 13px;
  background: var(--night);
  box-shadow: 0 18px 36px rgba(14, 9, 11, 0.38);
  transform-origin: 50% 100%;
}

.hero-project-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
}

.hero-project-chip--one {
  width: clamp(84px, 9vw, 150px);
  aspect-ratio: 1.42;
  transform: translateY(18px) rotate(-8deg);
}

.hero-project-chip--two {
  width: clamp(105px, 12vw, 190px);
  aspect-ratio: 0.72;
  transform: rotate(4deg);
}

.hero-project-chip--three {
  width: clamp(74px, 8vw, 132px);
  aspect-ratio: 1.48;
  transform: translateY(11px) rotate(9deg);
}

.hero-topline,
.hero-content,
.hero-footer {
  position: absolute;
  z-index: 6;
}

.hero-topline {
  top: 30px;
  right: clamp(22px, 4vw, 64px);
  left: clamp(22px, 4vw, 64px);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 234, 220, 0.78);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-topline span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-content {
  right: 5.4%;
  bottom: 17%;
  left: 5.4%;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow-light,
.section-label-light {
  color: var(--peach-soft);
}

.hero-content h1 {
  max-width: 1100px;
  margin: 0;
  color: #ffd0b9;
  font-size: clamp(74px, 14.5vw, 220px);
  font-weight: 800;
  letter-spacing: -0.095em;
  line-height: 0.77;
  text-wrap: balance;
}

.hero-content h1 span {
  display: block;
  width: max-content;
  max-width: 100%;
}

.hero-content h1 span:last-child {
  margin-left: 0.14em;
  color: #ffe4d2;
}

.hero-role {
  margin: 29px 0 0 0.55em;
  color: rgba(255, 237, 224, 0.92);
  font-family: var(--mono);
  font-size: clamp(11px, 1.25vw, 15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 350px;
  margin: 18px 0 0 0.55em;
  color: rgba(255, 235, 222, 0.75);
  font-size: 14px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 24px 0 0 0.55em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 45px;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  background: var(--peach);
  color: var(--night);
  box-shadow: 0 12px 30px rgba(245, 139, 114, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe0cb;
}

.hero-link {
  color: rgba(255, 237, 224, 0.78);
  font-family: var(--mono);
  font-size: 11px;
}

.hero-link span {
  color: var(--peach);
}

.hero-link:hover span {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-footer {
  right: clamp(22px, 4vw, 64px);
  bottom: 28px;
  left: clamp(22px, 4vw, 64px);
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.3fr auto;
  align-items: end;
  gap: 22px;
  color: rgba(255, 237, 224, 0.72);
}

.hero-stat {
  display: grid;
  gap: 5px;
}

.hero-stat span,
.hero-scroll {
  color: rgba(255, 229, 214, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat strong {
  color: #ffe1cf;
  font-size: 14px;
  font-weight: 600;
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  color: var(--peach-soft);
  transition: color 160ms ease, transform 160ms ease;
}

.hero-scroll:hover {
  color: #fff;
  transform: translateY(-2px);
}

.signal-strip {
  position: relative;
  z-index: 4;
  overflow: hidden;
  height: 73px;
  border-top: 1px solid rgba(47, 34, 32, 0.09);
  border-bottom: 1px solid rgba(47, 34, 32, 0.09);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 232, 204, 0.68), transparent 14rem),
    linear-gradient(100deg, var(--peach), #ffb39b 45%, var(--lilac));
  color: var(--night);
}

.signal-strip__track {
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  gap: 26px;
  padding-right: 26px;
  animation: ticker 26s linear infinite;
  font-size: clamp(18px, 2.1vw, 30px);
  font-weight: 700;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.signal-strip__track b {
  color: var(--coral-deep);
  font-size: 0.8em;
}

.section {
  padding: clamp(92px, 11vw, 164px) clamp(18px, 6vw, 94px);
}

.work {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 7%, rgba(255, 188, 157, 0.28), transparent 24rem),
    radial-gradient(circle at 5% 48%, rgba(200, 183, 218, 0.19), transparent 27rem),
    var(--cream);
}

.work::before,
.about::before {
  position: absolute;
  top: 15%;
  left: -7rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(241, 126, 114, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.work::after,
.about::after {
  position: absolute;
  top: 12%;
  left: -1rem;
  width: 11rem;
  height: 11rem;
  border: 1px solid rgba(241, 126, 114, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading h2,
.lab-copy h2,
.contact-copy h2 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 8.3vw, 128px);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.section-heading h2 em,
.lab-copy h2 em,
.contact-copy h2 em {
  display: inline-block;
  padding: 0.05em 0.17em 0.09em;
  border-radius: 0.4em;
  color: var(--night);
  font-style: normal;
  background: linear-gradient(100deg, var(--peach), #ffcab1);
}

.section-intro {
  max-width: 300px;
  margin: 0 0 0.5rem;
  color: var(--ink-soft);
  font-size: 15px;
}

.filter-row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.filter-label {
  margin-right: 7px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.03em;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter-button span {
  color: var(--ink-faint);
  font-size: 9px;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: transparent;
  background: var(--ink);
  color: var(--cream);
  outline: none;
  transform: translateY(-2px);
}

.filter-button.is-active span {
  color: var(--peach-soft);
}

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

.project-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(78, 47, 40, 0.04);
  cursor: pointer;
  opacity: 1;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transition: opacity 560ms ease, transform 300ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card.is-visible,
.project-card.reveal-ready {
  opacity: 1;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
}

.project-card:hover,
.project-card:focus-visible {
  border-color: rgba(241, 126, 114, 0.46);
  box-shadow: 0 24px 58px rgba(110, 59, 50, 0.14);
  outline: none;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px);
}

.project-card.is-hidden {
  display: none;
}

.project-card:first-child {
  grid-column: span 2;
}

.project-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: var(--cream-deep);
}

.project-card[data-category="web"] .project-visual {
  background: linear-gradient(135deg, #c6d7d1, #f1c2a9 70%, #e59284);
}

.project-card[data-category="product"] .project-visual {
  background: linear-gradient(135deg, #9ab6d6, #c0c6ee 55%, #f7b7a9);
}

.project-card[data-category="identity"] .project-visual {
  background: linear-gradient(135deg, #f7c8a3, #c9b8dc 56%, #f18c7e);
}

.project-card[data-category="motion"] .project-visual {
  background:
    radial-gradient(circle at 50% 30%, rgba(231, 165, 55, 0.23), transparent 27%),
    linear-gradient(120deg, #09090a, #1d1718 55%, #31221d);
}

.project-card:first-child .project-visual {
  min-height: 380px;
}

.project-badge,
.project-open {
  position: absolute;
  z-index: 2;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 5px 9px;
  border: 1px solid rgba(255, 246, 237, 0.52);
  border-radius: 999px;
  background: rgba(34, 22, 24, 0.47);
  color: #fff3e9;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-badge {
  left: 16px;
}

.project-open {
  right: 16px;
  justify-content: center;
  width: 25px;
  padding: 0;
  font-size: 15px;
  transition: background 160ms ease, transform 160ms ease;
}

.project-card:hover .project-open {
  background: var(--peach);
  color: var(--night);
  transform: rotate(12deg);
}

.project-media {
  position: absolute;
  inset: 48px 24px 20px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 15px;
  background: rgba(18, 14, 16, 0.3);
  box-shadow: 0 22px 40px rgba(23, 13, 16, 0.23);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.65, 0.25, 1), filter 400ms ease;
}

.project-media--contain img {
  min-width: 0;
  min-height: 0;
  object-fit: contain;
}

.project-media--wide {
  inset: 48px 11% 20px;
}

.project-media--hotel img,
.project-media--motion img {
  object-fit: cover;
}

/* Little Loom is supplied as a transparent portrait canvas with a small
   central artwork. Scale the canvas so the actual mark reads as a thumbnail
   instead of disappearing into the card background. */
.project-media--kidswear img {
  transform: scale(2.1);
}

.project-media--motion {
  inset: 40px 29% 18px;
  border: 1px solid rgba(255, 213, 119, 0.3);
  background: #070708;
}

.project-media--motion img {
  object-fit: cover;
}

.project-card:hover .project-media img {
  filter: saturate(1.1) contrast(1.04);
  transform: scale(1.045);
}

.project-card:hover .project-media--kidswear img {
  transform: scale(2.1);
}

.project-media__play {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 229, 190, 0.58);
  border-radius: 50%;
  background: rgba(22, 15, 14, 0.68);
  color: var(--sun);
  font-size: 12px;
}

.project-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 215px;
  padding: 22px 24px 23px;
}

.project-info__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 18px 0 9px;
  color: var(--ink);
  font-size: clamp(27px, 3.2vw, 46px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.94;
  overflow-wrap: anywhere;
}

.project-info p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.project-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 21px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.project-tag {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.project-link {
  flex: 0 0 auto;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 10px;
  text-align: right;
  white-space: nowrap;
}

.project-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-link--muted {
  color: var(--ink-faint);
}

.lab {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(35px, 8vw, 140px);
  overflow: hidden;
  min-height: 650px;
  border-radius: 42px 42px 0 0;
  background:
    radial-gradient(circle at 74% 33%, rgba(255, 176, 136, 0.22), transparent 19rem),
    radial-gradient(circle at 88% 91%, rgba(144, 121, 181, 0.22), transparent 25rem),
    var(--night-soft);
  color: var(--night-ink);
}

.lab::before {
  position: absolute;
  top: -22%;
  right: -5%;
  width: 58vw;
  height: 58vw;
  max-width: 720px;
  max-height: 720px;
  border: 1px solid rgba(255, 192, 161, 0.2);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.lab-copy,
.constellation {
  position: relative;
  z-index: 1;
}

.lab-copy h2 {
  color: #fff0e5;
  font-size: clamp(58px, 7.6vw, 118px);
}

.lab-copy h2 em {
  color: var(--night);
}

.lab-copy > p:not(.section-label) {
  max-width: 310px;
  margin: 26px 0 25px;
  color: rgba(255, 234, 222, 0.68);
  font-size: 15px;
}

.button-outline-light {
  border: 1px solid rgba(255, 228, 213, 0.36);
  background: transparent;
  color: #fff0e6;
}

.button-outline-light:hover,
.button-outline-light:focus-visible {
  border-color: var(--peach);
  background: var(--peach);
  color: var(--night);
}

.constellation {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 209, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 48%), rgba(255, 178, 148, 0.17), transparent 22rem),
    radial-gradient(circle at 23% 77%, rgba(180, 152, 203, 0.19), transparent 18rem),
    rgba(20, 15, 18, 0.38);
  transition: background 300ms ease;
}

.constellation::before,
.constellation::after {
  position: absolute;
  border: 1px solid rgba(255, 206, 183, 0.18);
  border-radius: 50%;
  content: "";
}

.constellation::before {
  inset: 9%;
}

.constellation::after {
  inset: 24%;
}

.constellation-line {
  position: absolute;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 211, 193, 0.44), transparent);
  transform-origin: left center;
}

.constellation-line--one {
  top: 34%;
  left: 18%;
  width: 68%;
  transform: rotate(17deg);
}

.constellation-line--two {
  top: 71%;
  left: 27%;
  width: 53%;
  transform: rotate(-34deg);
}

.constellation-star {
  position: absolute;
  z-index: 1;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  background: var(--night);
  box-shadow: 0 0 0 6px rgba(255, 178, 148, 0.08), 0 0 24px rgba(255, 178, 148, 0.54);
}

.constellation-star--one {
  top: 29%;
  left: 20%;
}

.constellation-star--two {
  top: 73%;
  left: 75%;
  border-color: var(--lilac);
  box-shadow: 0 0 0 6px rgba(201, 182, 218, 0.08), 0 0 24px rgba(201, 182, 218, 0.54);
}

.constellation-star--three {
  top: 47%;
  right: 15%;
  width: 5px;
  height: 5px;
  border-color: var(--sun);
}

.lab-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(360px, 65%);
  padding: 25px;
  border: 1px solid rgba(255, 224, 208, 0.28);
  border-radius: 23px;
  background: linear-gradient(135deg, rgba(255, 180, 148, 0.19), rgba(53, 36, 42, 0.86));
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -50%) rotate(-4deg);
  transition: transform 400ms cubic-bezier(0.2, 0.65, 0.25, 1);
  backdrop-filter: blur(15px);
}

.lab-card.is-pulsing {
  animation: cardPulse 520ms ease;
}

.lab-card__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 231, 216, 0.6);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.lab-card h3 {
  margin: 38px 0 9px;
  color: #fff1e8;
  font-size: clamp(30px, 4vw, 54px);
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.lab-card p {
  margin: 0 0 20px;
  color: rgba(255, 231, 216, 0.7);
  font-size: 14px;
}

.lab-card__link {
  color: var(--peach);
  font-family: var(--mono);
  font-size: 10px;
}

.lab-card__link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.constellation-caption {
  position: absolute;
  right: 13%;
  bottom: 14%;
  color: rgba(255, 226, 210, 0.46);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: clamp(24px, 6vw, 90px);
  overflow: hidden;
  background: var(--cream);
}

.about-card,
.about-aside {
  position: relative;
  z-index: 1;
}

.about-card {
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 6%, rgba(255, 184, 151, 0.24), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.about-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.about-card__top > span {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 10px;
}

.about-card__body {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 28px;
  padding-top: 50px;
}

.about-orbit {
  position: relative;
  display: grid;
  width: min(210px, 100%);
  aspect-ratio: 1;
  margin: auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 154, 0.26), transparent 67%);
}

.about-orbit::before,
.about-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgba(241, 126, 114, 0.36);
  border-radius: 50%;
  content: "";
  animation: slowSpin 20s linear infinite;
}

.about-orbit::after {
  inset: 26%;
  border-style: solid;
  border-color: rgba(201, 182, 218, 0.48);
  animation-direction: reverse;
  animation-duration: 13s;
}

.about-orbit img {
  position: relative;
  z-index: 1;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 25px rgba(93, 48, 40, 0.16);
}

.about-orbit i,
.about-orbit b {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--coral);
}

.about-orbit i {
  top: 11%;
  right: 18%;
}

.about-orbit b {
  bottom: 15%;
  left: 14%;
  background: var(--lilac);
}

.about-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.about-copy h2 em {
  color: var(--coral-deep);
  font-style: normal;
}

.about-copy > p {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
}

.about-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 27px;
}

.about-facts span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.about-aside {
  padding-top: 24px;
}

.about-quote {
  max-width: 420px;
  margin: 35px 0 50px;
  color: var(--ink);
  font-size: clamp(27px, 3.4vw, 47px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.capability-list {
  display: grid;
  gap: 17px;
}

.capability-list > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.capability-list span {
  grid-row: span 2;
  color: var(--coral-deep);
  font-family: var(--mono);
  font-size: 10px;
}

.capability-list strong {
  color: var(--ink);
  font-size: 15px;
}

.capability-list small {
  color: var(--ink-soft);
  font-size: 12px;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: center;
  gap: 50px;
  min-height: 590px;
  overflow: hidden;
  padding: clamp(86px, 11vw, 160px) clamp(18px, 8vw, 120px);
  background:
    radial-gradient(circle at 80% 30%, rgba(255, 190, 145, 0.35), transparent 18rem),
    radial-gradient(circle at 14% 105%, rgba(181, 158, 211, 0.35), transparent 24rem),
    linear-gradient(145deg, #251b1f, #3c2527);
  color: var(--night-ink);
}

.contact::before,
.contact::after {
  position: absolute;
  border: 1px solid rgba(255, 201, 175, 0.25);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact::before {
  top: -28%;
  right: 2%;
  width: 48vw;
  height: 48vw;
}

.contact::after {
  top: -12%;
  right: 11%;
  width: 34vw;
  height: 34vw;
}

.contact-copy,
.contact-orbit {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: #fff0e5;
  font-size: clamp(60px, 8vw, 124px);
}

.contact-copy h2 em {
  color: var(--night);
}

.contact-copy > p:not(.section-label) {
  max-width: 390px;
  margin: 26px 0 25px;
  color: rgba(255, 234, 222, 0.7);
  font-size: 15px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-copy .button {
  min-height: 50px;
  font-size: 13px;
}

.contact-orbit {
  display: grid;
  width: min(360px, 80%);
  aspect-ratio: 1;
  margin-left: auto;
  place-items: center;
  border: 1px solid rgba(255, 213, 189, 0.43);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 182, 143, 0.26), rgba(255, 182, 143, 0.02) 53%, transparent 54%),
    conic-gradient(from 30deg, transparent, rgba(255, 179, 145, 0.42), transparent 28%, rgba(201, 182, 218, 0.4), transparent 64%);
  box-shadow: 0 0 0 20px rgba(255, 181, 146, 0.06), 0 0 100px rgba(255, 170, 130, 0.22);
  animation: orbitFloat 8s ease-in-out infinite;
}

.contact-orbit::before,
.contact-orbit::after {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--peach);
  border-radius: 50%;
  background: var(--night);
  content: "";
}

.contact-orbit::before {
  top: 11%;
  right: 17%;
}

.contact-orbit::after {
  bottom: 19%;
  left: 11%;
  border-color: var(--lilac);
}

.contact-orbit span {
  color: #ffe3cf;
  font-family: var(--mono);
  font-size: clamp(13px, 1.6vw, 20px);
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-align: center;
}

.contact-orbit em {
  color: var(--peach);
  font-style: normal;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(18px, 6vw, 94px);
  background: #120f11;
  color: rgba(255, 232, 218, 0.62);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer a {
  color: var(--peach-soft);
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.project-dialog {
  width: min(1130px, calc(100% - 28px));
  max-height: min(850px, calc(100% - 28px));
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 35px 120px rgba(24, 15, 18, 0.44);
}

.project-dialog::backdrop {
  background: rgba(27, 17, 20, 0.73);
  backdrop-filter: blur(8px);
}

.dialog-topbar {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 22px;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--cream) 89%, transparent);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.dialog-topbar > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.dialog-topbar .status-dot {
  width: 6px;
  height: 6px;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(241, 126, 114, 0.12);
}

.dialog-topbar button {
  padding: 5px 0;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.dialog-topbar button span {
  margin-left: 7px;
  color: var(--coral-deep);
  font-size: 18px;
  vertical-align: -2px;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  padding: clamp(25px, 5vw, 60px);
}

.dialog-copy {
  display: flex;
  flex-direction: column;
}

.dialog-copy h2 {
  max-width: 450px;
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(45px, 6vw, 86px);
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.dialog-summary {
  max-width: 440px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.dialog-meta {
  display: grid;
  gap: 9px;
  margin: 29px 0 18px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.dialog-meta b {
  margin-left: 7px;
  color: var(--ink);
  font-weight: 500;
}

.dialog-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.dialog-services span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
}

.dialog-note {
  margin: auto 0 22px;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.55;
}

.dialog-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.dialog-link:hover {
  background: var(--coral);
  color: var(--night);
}

.dialog-preview {
  position: relative;
  display: flex;
  min-height: 460px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 183, 150, 0.24), transparent 17rem),
    linear-gradient(135deg, #ddaa98, #8b758d 62%, #4d3c50);
}

.dialog-preview__stage {
  position: relative;
  display: grid;
  width: 84%;
  height: 78%;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 240, 231, 0.48);
  border-radius: 18px;
  background: rgba(20, 14, 15, 0.43);
  box-shadow: 0 28px 55px rgba(36, 20, 23, 0.28);
}

.dialog-preview__stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dialog-preview__stage.project-media--wide img,
.dialog-preview__stage.project-media--hotel img {
  object-fit: cover;
}

.dialog-preview__stage.project-media--motion {
  width: 52%;
  height: 91%;
  border-color: rgba(255, 212, 111, 0.42);
  background: #070708;
}

.dialog-preview__stage video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #060607;
}

.visual-caption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 6px 8px;
  border: 1px solid rgba(255, 237, 224, 0.45);
  border-radius: 999px;
  background: rgba(25, 16, 19, 0.56);
  color: #fff1e7;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.dialog-preview__caption {
  position: absolute;
  right: 24px;
  bottom: 21px;
  color: rgba(255, 244, 234, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 11px 14px;
  border: 1px solid rgba(255, 228, 212, 0.26);
  border-radius: 999px;
  background: #2a1d20;
  color: #ffe7d9;
  font-family: var(--mono);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.65, 0.25, 1);
}

[data-reveal].is-visible,
[data-reveal].reveal-ready {
  opacity: 1;
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-35%); }
}

@keyframes cardPulse {
  0%, 100% { transform: translate(-50%, -50%) rotate(-4deg) scale(1); }
  50% { transform: translate(-50%, -50%) rotate(-1deg) scale(1.025); }
}

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

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Keep the hero's labels clear when a desktop window is maximized at a
   short height (including browser zoom). The spacious desktop scale remains
   unchanged on taller screens. */
@media (min-width: 981px) and (max-height: 820px) {
  .hero-content h1 {
    font-size: clamp(74px, 14vw, 190px);
  }
}

@media (min-width: 981px) and (max-height: 700px) {
  .hero-content {
    bottom: 11%;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .availability {
    display: none;
  }

  .hero-footer {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 13px;
  }

  .hero-scroll {
    justify-content: flex-start;
  }

  .hero-project-strip {
    top: 24%;
    right: 6%;
    bottom: auto;
    transform: rotate(-3deg) scale(0.82);
  }

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

  .section-intro {
    max-width: 500px;
  }

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

  .lab {
    gap: 65px;
  }

  .constellation {
    min-height: min(600px, 78vw);
  }

  .about-card__body {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .contact-orbit {
    width: min(310px, 62vw);
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  body::after {
    opacity: 0.055;
  }

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

  .site-header.scrolled {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .brand-logo-wrap {
    width: 33px;
    height: 33px;
  }

  .brand-copy strong,
  .brand-copy em {
    font-size: 12px;
  }

  .header-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .theme-toggle {
    width: 32px;
    height: 32px;
  }

  .hero {
    min-height: 790px;
    margin: 72px 10px 0;
    border-radius: 27px;
  }

  .hero-image {
    object-position: 54% 43%;
  }

  .hero-topline {
    top: 20px;
    right: 18px;
    left: 18px;
    font-size: 8px;
  }

  .hero-topline span:last-child {
    display: none;
  }

  .hero-moon {
    top: 14%;
    right: 8%;
    width: 150px;
  }

  .hero-project-strip {
    right: 10%;
    top: 20%;
    bottom: auto;
    transform: rotate(-4deg) scale(0.72);
    transform-origin: right center;
  }

  .hero-project-chip--one {
    display: none;
  }

  .hero-content {
    right: 18px;
    bottom: 25%;
    left: 18px;
  }

  .hero-content h1 {
    font-size: clamp(68px, 17vw, 118px);
  }

  .hero-content h1 span:last-child {
    margin-left: 0.03em;
  }

  .hero-role {
    margin-top: 22px;
    margin-left: 0.18em;
    font-size: 9px;
  }

  .hero-intro {
    max-width: 265px;
    margin-left: 0.18em;
    font-size: 12px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 13px;
    margin-left: 0.18em;
  }

  .hero-link {
    font-size: 10px;
  }

  .hero-footer {
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero-stat:nth-child(3) {
    display: none;
  }

  .hero-scroll {
    font-size: 8px;
  }

  .signal-strip {
    height: 62px;
  }

  .signal-strip__track {
    gap: 18px;
    font-size: 20px;
  }

  .section {
    padding: 88px 17px;
  }

  .section-heading h2,
  .lab-copy h2,
  .contact-copy h2 {
    font-size: clamp(55px, 16vw, 92px);
    letter-spacing: -0.065em;
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .filter-row {
    align-items: flex-start;
  }

  .filter-label {
    width: 100%;
    margin-bottom: 2px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-card:first-child,
  .project-card[data-category="motion"] {
    grid-column: auto;
  }

  .project-visual,
  .project-card:first-child .project-visual {
    min-height: 280px;
  }

  .project-media {
    inset: 45px 17px 17px;
  }

  .project-media--wide {
    inset: 48px 9% 17px;
  }

  .project-media--motion {
    inset: 37px 25% 17px;
  }

  .project-info {
    min-height: 225px;
    padding: 18px 18px 20px;
  }

  .project-info h3 {
    font-size: 34px;
    letter-spacing: -0.045em;
    line-height: 1;
  }

  .project-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .project-link {
    text-align: left;
  }

  .lab {
    min-height: 720px;
    border-radius: 30px 30px 0 0;
    padding: 86px 17px;
  }

  .constellation {
    min-height: 450px;
    border-radius: 50%;
  }

  .lab-card {
    width: 75%;
    padding: 20px;
  }

  .lab-card h3 {
    margin-top: 27px;
    font-size: 34px;
  }

  .constellation-caption {
    right: auto;
    bottom: 10%;
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
  }

  .about {
    gap: 50px;
  }

  .about-card {
    padding: 22px 19px 28px;
    border-radius: 28px;
  }

  .about-card__body {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-top: 34px;
  }

  .about-orbit {
    width: 180px;
  }

  .about-copy h2 {
    font-size: 52px;
  }

  .about-aside {
    padding-top: 0;
  }

  .about-quote {
    margin: 23px 0 36px;
    font-size: 34px;
  }

  .contact {
    min-height: 720px;
    padding: 88px 17px;
  }

  .contact-orbit {
    width: 245px;
    margin-top: 8px;
  }

  .contact-actions .button {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 17px;
    line-height: 1.4;
  }

  .project-dialog {
    width: calc(100% - 16px);
    max-height: calc(100% - 16px);
    border-radius: 23px;
  }

  .dialog-topbar {
    padding: 13px 16px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 22px 17px 28px;
  }

  .dialog-copy h2 {
    font-size: 55px;
  }

  .dialog-preview {
    min-height: 390px;
  }

  .dialog-preview__stage {
    width: 88%;
    height: 78%;
  }

  .dialog-preview__stage.project-media--motion {
    width: 58%;
    height: 91%;
  }

  .toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    border-radius: 13px;
    text-align: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
