@font-face {
  font-family: "Ground SF Pro Display";
  src: url("assets/fonts/SF-Pro-Display-Bold.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 900;
}

@font-face {
  font-family: "Ground SF Pro Display";
  src: url("assets/fonts/SF-Pro-Display-Regular.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Ground SF Pro Display";
  src: url("assets/fonts/SF-Pro-Display-Thin.otf") format("opentype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 300;
}

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

:root {
  --black: #000000;
  --white: #fffcfc;
  --gray: #c2c2c2;
  --orange: #ff650f;
  --panel: rgba(255, 252, 252, 0.055);
  --panel-strong: rgba(255, 252, 252, 0.09);
  --line: rgba(194, 194, 194, 0.18);
  --line-strong: rgba(255, 252, 252, 0.26);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.46);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1180px;
  --separator: min(calc(100% - 40px), var(--max));
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 101, 15, 0.18), transparent 28rem),
    radial-gradient(circle at 12% 34%, rgba(255, 252, 252, 0.08), transparent 24rem),
    radial-gradient(circle at 52% 58%, rgba(194, 194, 194, 0.055), transparent 36rem),
    linear-gradient(180deg, #000 0%, #080706 42%, #000 100%);
  color: var(--white);
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 252, 252, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 252, 252, 0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(circle at 50% 24%, black, transparent 76%);
  opacity: 0.42;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 38%, rgba(255, 101, 15, 0.07) 48%, transparent 62%),
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 101, 15, 0.1), transparent 18rem);
  mix-blend-mode: screen;
  opacity: 0.72;
}

body.menu-open {
  overflow: hidden;
}

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

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

img[src$="whatsapp.svg"],
img[src$="instagram.svg"] {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  object-fit: contain;
  flex: 0 0 auto;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: rgba(255, 101, 15, 0.32);
  color: var(--white);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1000;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.72);
  transition: opacity 450ms var(--ease), transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 252, 252, 0.9);
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 252, 252, 0.32);
  background: rgba(255, 252, 252, 0.03);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 28px rgba(255, 252, 252, 0.08);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  background: var(--orange);
  transform: translate3d(-50%, -50%, 0) scale(0.75);
  mix-blend-mode: normal;
}

body.cursor-hover .cursor-ring {
  border-color: rgba(255, 101, 15, 0.68);
  background: rgba(255, 101, 15, 0.045);
  box-shadow: 0 0 42px rgba(255, 101, 15, 0.3);
  transform: translate3d(-50%, -50%, 0) scale(1.55);
}

body.cursor-nav .cursor-dot {
  opacity: 0.35;
  transform: translate3d(-50%, -50%, 0) scale(0.45);
}

body.cursor-nav .cursor-ring {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 101, 15, 0.78);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 24px rgba(255, 101, 15, 0.28);
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1180px);
  align-items: center;
  justify-content: center;
  padding: 12px clamp(22px, 4.5vw, 72px);
  border: 0;
  border-bottom: 1px solid rgba(255, 252, 252, 0.08);
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.045)),
    rgba(0, 0, 0, 0.045);
  backdrop-filter: blur(18px) saturate(122%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(126px, 11vw, 176px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 101, 15, 0.12));
}

.brand {
  grid-area: 1 / 1;
  justify-self: start;
  margin-left: clamp(24px, 5vw, 96px);
}

.site-nav {
  grid-area: 1 / 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  margin-right: clamp(24px, 5vw, 96px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 252, 252, 0.74);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 252, 252, 0);
}

.site-nav .nav-social {
  justify-content: center;
  width: 34px;
  min-height: 34px;
  padding: 0;
  border-color: rgba(255, 252, 252, 0.1);
  background: rgba(255, 252, 252, 0.035);
}

.nav-social img {
  width: 15px;
  height: 15px;
  filter: invert(1);
  opacity: 0.78;
}

.site-nav .nav-social::after {
  display: none;
}

.site-nav .nav-social:hover {
  border-color: rgba(255, 101, 15, 0.5);
  background: rgba(255, 101, 15, 0.1);
}

.site-nav .nav-social:hover img {
  opacity: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease);
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover {
  border-color: rgba(255, 101, 15, 0.34);
  background: rgba(0, 0, 0, 0.18);
  text-shadow: 0 0 18px rgba(255, 252, 252, 0.18);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.case-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 101, 15, 0.1), transparent 24rem),
    linear-gradient(180deg, #000 0%, #050505 54%, #000 100%);
}

.case-main {
  padding: clamp(128px, 14vw, 190px) 0 clamp(78px, 10vw, 130px);
}

.case-hero {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
}

.case-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(34px, 5vw, 70px);
  color: rgba(255, 252, 252, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 220ms var(--ease);
}

.case-back:hover {
  color: var(--orange);
}

.case-hero h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 6.8vw, 7.4rem);
  font-weight: 380;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.case-hero h1 em {
  font-style: italic;
  text-decoration: underline;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.08em;
}

.case-info {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 9vw, 130px);
  margin-top: clamp(64px, 8vw, 118px);
  align-items: start;
}

.case-description {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 252, 252, 0.78);
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  line-height: 1.42;
}

.case-meta {
  display: grid;
  gap: 0;
}

.case-meta-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 252, 252, 0.42);
  color: rgba(255, 252, 252, 0.76);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.case-meta-row strong {
  color: var(--white);
  font-weight: 850;
}

.case-player {
  width: min(calc(100% - 40px), 1320px);
  margin: clamp(76px, 10vw, 140px) auto 0;
  border-top: 1px solid rgba(255, 252, 252, 0.14);
  padding-top: clamp(24px, 4vw, 44px);
}

.case-embed {
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.1);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  aspect-ratio: 16 / 9;
}

.case-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 252, 252, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 252, 0.04);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 220ms var(--ease), opacity 220ms var(--ease);
}

.menu-toggle span + span {
  margin-top: 6px;
}

body.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section {
  position: relative;
  isolation: isolate;
}

.anchor-section {
  scroll-margin-top: 180px;
}

.section-shell {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 132px 20px 90px;
  background: #000;
}

.hero-vimeo,
.hero-fallback,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-vimeo {
  z-index: 1;
  overflow: hidden;
  opacity: 0.58;
  filter: saturate(0.72) contrast(1.12);
  transition: opacity 380ms var(--ease), filter 380ms var(--ease);
}

.hero-vimeo iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%) scale(1.04);
  pointer-events: none;
}

body.video-sound-on .hero-vimeo {
  opacity: 0.66;
  filter: saturate(0.86) contrast(1.16);
}

body.video-paused .hero-vimeo {
  opacity: 0.44;
  filter: saturate(0.62) contrast(1.06) blur(1px);
}

body.video-title-hover .hero-vimeo {
  opacity: 0.72;
  filter: saturate(0.9) contrast(1.2);
}

.hero-fallback {
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(255, 252, 252, 0.05) 0 1px, transparent 1px 160px),
    radial-gradient(circle at 52% 44%, rgba(255, 252, 252, 0.12), transparent 11rem),
    radial-gradient(circle at 70% 58%, rgba(255, 101, 15, 0.18), transparent 16rem),
    linear-gradient(135deg, #030303 0%, #111 42%, #000 100%);
}

.hero-fallback::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    conic-gradient(from 140deg at 48% 52%, transparent, rgba(255, 252, 252, 0.15), transparent 22%, rgba(255, 101, 15, 0.14), transparent 46%);
  filter: blur(70px);
  opacity: 0.65;
  animation: drift 14s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.3) 36%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.42) 72%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, 1220px);
  text-align: center;
  transform: translateY(2vh);
  display: grid;
  justify-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: rgba(194, 194, 194, 0.74);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 101, 15, 0.72);
  vertical-align: 1px;
}

.hero-pretitle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(5px, 0.55vw, 10px);
  width: 100%;
  margin: 0 0 clamp(34px, 3.65vw, 52px);
  color: rgba(255, 252, 252, 0.68);
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.25vw, 2.45rem);
  line-height: 1;
  text-transform: lowercase;
}

.hero-pretitle span {
  color: rgba(255, 252, 252, 0.62);
  font-style: normal;
  font-weight: 400;
}

.hero-pretitle em {
  color: rgba(255, 252, 252, 0.72);
  font-style: italic;
  font-weight: 400;
}

.hero-pretitle strong {
  color: var(--orange);
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.72em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  --mx: 50%;
  --my: 50%;
  display: inline-grid;
  justify-items: center;
  gap: 0;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.75rem, 8.35vw, 9.05rem);
  font-weight: 800;
  line-height: 0.78;
  text-transform: lowercase;
  letter-spacing: 0;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.58));
  transform: translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0) skewX(var(--skew, 0deg));
  transition: filter 360ms var(--ease), transform 360ms var(--ease);
  cursor: default;
}

.hero-title:hover {
  filter:
    drop-shadow(0 28px 60px rgba(0, 0, 0, 0.62))
    drop-shadow(0 0 26px rgba(255, 101, 15, 0.18));
}

.hero-title span {
  display: block;
  width: max-content;
  max-width: 100%;
  text-align: center;
  overflow: visible;
  letter-spacing: -0.06em;
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
}

.hero-title span {
  transition: filter 260ms var(--ease), text-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.hero-title span:hover {
  filter:
    drop-shadow(0 0 22px rgba(255, 101, 15, 0.24))
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.38));
}

.hero-title span:first-child {
  color: rgba(255, 252, 252, 0.76);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 101, 15, 0.72), rgba(255, 252, 252, 0.92) 16%, rgba(194, 194, 194, 0.72) 60%, rgba(255, 252, 252, 0.82) 86%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  line-height: 0.9;
  padding: 0.08em 0 0.03em;
  transform: none;
  transform-origin: center;
}

.hero-title span:nth-child(2) {
  color: var(--orange);
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 1.3em;
  font-style: normal;
  font-weight: 400;
  line-height: 0.58;
  text-transform: lowercase;
  transform: translateY(-0.23em);
  transform-origin: center;
  padding: 0.06em 0 0.12em;
  -webkit-text-stroke: 0;
  text-shadow: 0 0 32px rgba(255, 101, 15, 0.2);
  transition: filter 180ms var(--ease), text-shadow 180ms var(--ease);
}

.hero-title span:nth-child(2).is-serif-italic {
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-title span:nth-child(2).is-serif-regular {
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.06em;
}

.hero-title span:nth-child(2).is-sans-bold {
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.88em;
  font-style: normal;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.74;
  text-transform: lowercase;
}

.hero-signature {
  margin: clamp(12px, 1.55vw, 24px) 0 0;
  color: rgba(255, 252, 252, 0.58);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-content .button {
  margin-top: clamp(26px, 3.8vw, 46px);
}

.hero-copy {
  max-width: 560px;
  margin: 28px auto 0;
  color: rgba(255, 252, 252, 0.78);
  font-size: clamp(1.03rem, 1.8vw, 1.32rem);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  margin-top: clamp(18px, 3vw, 34px);
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 252, 252, 0.18);
  color: var(--white);
  background: rgba(255, 252, 252, 0.055);
  backdrop-filter: blur(18px);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition: border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.button:hover {
  border-color: rgba(255, 101, 15, 0.72);
  background: rgba(255, 101, 15, 0.12);
  transform: translateY(-2px);
}

.button-arrow {
  color: var(--orange);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 220ms var(--ease);
}

.button:hover .button-arrow {
  transform: translateX(4px);
}

.video-controls {
  position: absolute;
  left: clamp(20px, 4vw, 64px);
  bottom: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
}

.video-control {
  position: relative;
  min-width: auto;
  min-height: auto;
  padding: 0 0 6px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 252, 252, 0.58);
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms var(--ease), text-shadow 180ms var(--ease);
}

.video-control::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.video-control:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(255, 101, 15, 0.34);
}

.video-control:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.scroll-indicator {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: 38px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(194, 194, 194, 0.74);
}

.scroll-indicator span {
  width: 1px;
  height: 54px;
  overflow: hidden;
  background: rgba(255, 252, 252, 0.18);
}

.scroll-indicator span::after {
  content: "";
  display: block;
  width: 1px;
  height: 22px;
  background: var(--orange);
  animation: scrollPulse 1.9s var(--ease) infinite;
}

.scroll-indicator p {
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(194, 194, 194, 0.64);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-line {
  width: var(--separator);
  height: 1px;
  margin: 0 auto clamp(42px, 5vw, 68px);
  background: linear-gradient(90deg, transparent, rgba(194, 194, 194, 0.28), transparent);
  transform-origin: left;
}

.about,
.projects,
.numbers,
.impact,
.contact {
  padding: clamp(88px, 12vw, 150px) 0;
}

.projects {
  position: relative;
  padding-top: clamp(74px, 8vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 252, 252, 0.07), transparent 22rem),
    radial-gradient(circle at 86% 60%, rgba(255, 101, 15, 0.1), transparent 28rem);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.68fr);
  grid-template-areas:
    "copy visual";
  column-gap: clamp(42px, 7vw, 100px);
  row-gap: clamp(24px, 4vw, 42px);
  align-items: center;
}

.about-copy {
  grid-area: copy;
}

.about h2,
.section-head h2,
.contact h2 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 6.8rem);
  font-weight: 780;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.editorial-text {
  max-width: 670px;
  margin-top: clamp(26px, 4vw, 48px);
  color: rgba(255, 252, 252, 0.62);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 260;
  line-height: 1.9;
  letter-spacing: 0;
}

.editorial-text p {
  margin: 0;
}

.editorial-text p + p {
  margin-top: 18px;
}

.about-signature {
  display: inline-grid;
  gap: 5px;
  margin-top: clamp(26px, 4vw, 42px);
  padding: 16px 20px;
  border-color: rgba(255, 101, 15, 0.22);
}

.about-signature strong {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-signature span {
  color: rgba(194, 194, 194, 0.76);
  font-size: 0.84rem;
  line-height: 1.45;
}

.about-visual {
  grid-area: visual;
  justify-self: end;
  width: min(100%, 390px);
}

.glass-panel {
  border: 1px solid rgba(255, 252, 252, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 252, 0.08), rgba(255, 252, 252, 0.03)),
    rgba(255, 252, 252, 0.035);
  backdrop-filter: blur(22px) saturate(125%);
  box-shadow: var(--shadow);
}

.portrait-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5.15;
  padding: 10px;
  transition:
    border-color 320ms var(--ease),
    box-shadow 320ms var(--ease),
    transform 320ms var(--ease),
    background 320ms var(--ease);
}

.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 101, 15, 0.18), transparent 14rem),
    linear-gradient(145deg, transparent, rgba(255, 101, 15, 0.08));
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease);
}

.portrait-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: auto 20px 20px auto;
  width: 90px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 30px rgba(255, 101, 15, 0.7);
  z-index: 2;
  transition: width 320ms var(--ease), box-shadow 320ms var(--ease);
}

.portrait-card img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 42%;
  filter: grayscale(1) contrast(1.08);
  transition: filter 420ms var(--ease), transform 520ms var(--ease);
}

.portrait-card:hover {
  border-color: rgba(255, 101, 15, 0.36);
  background:
    linear-gradient(145deg, rgba(255, 101, 15, 0.11), rgba(255, 252, 252, 0.026)),
    rgba(255, 252, 252, 0.035);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.5), 0 0 44px rgba(255, 101, 15, 0.12);
  transform: translateY(-4px);
}

.portrait-card:hover::after {
  opacity: 1;
}

.portrait-card:hover::before {
  width: 132px;
  box-shadow: 0 0 34px rgba(255, 101, 15, 0.78);
}

.portrait-card:hover img {
  filter: grayscale(0.18) contrast(1.12) brightness(1.05);
  transform: scale(1.018);
}

.portrait-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 18px auto 0;
  color: rgba(255, 252, 252, 0.86);
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  text-align: center;
}

.portrait-caption::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 101, 15, 0.56);
}

.portrait-caption span {
  color: rgba(255, 252, 252, 0.52);
  font-weight: 400;
}

.impact {
  overflow: hidden;
  background:
    radial-gradient(circle at var(--impact-x, 50%) var(--impact-y, 50%), rgba(255, 101, 15, 0.13), transparent 18rem),
    linear-gradient(180deg, transparent, rgba(255, 252, 252, 0.018), transparent);
}

.impact-glow {
  position: absolute;
  inset: 18% 12%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 252, 252, 0.08), transparent 58%);
  filter: blur(70px);
  opacity: 0.72;
}

.impact-shell {
  min-height: clamp(360px, 54vw, 640px);
  display: grid;
  place-items: center;
  text-align: center;
}

.impact-shell .section-kicker {
  justify-self: center;
  margin-bottom: 0;
}

.impact-title {
  display: grid;
  gap: 10px;
  max-width: 1120px;
  margin: 24px auto 0;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 252, 252, 0.095);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 252, 252, 0.06), rgba(255, 252, 252, 0.018));
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  color: rgba(255, 252, 252, 0.9);
  font-size: clamp(2.2rem, 7vw, 7.7rem);
  font-weight: 860;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.impact-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(420px, 70%);
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 36px rgba(255, 101, 15, 0.56);
  transform: translateX(-50%);
}

.impact-title span:first-child {
  color: rgba(194, 194, 194, 0.58);
}

.impact-title em {
  color: var(--white);
  font-style: normal;
  text-shadow: 0 0 34px rgba(255, 101, 15, 0.36);
  -webkit-text-stroke: 1px rgba(255, 101, 15, 0.34);
}

.section-head {
  display: grid;
  align-items: end;
  gap: 22px;
  margin-bottom: clamp(34px, 6vw, 76px);
}

.section-intro {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 252, 252, 0.68);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.7;
}

.section-head.compact {
  display: block;
  margin-bottom: 34px;
}

.section-head.compact h2 {
  max-width: 740px;
  font-size: clamp(2.15rem, 5.6vw, 5.1rem);
}

.projects .section-head {
  gap: 0;
  margin-bottom: clamp(30px, 4vw, 52px);
}

.projects .section-head h2 {
  color: var(--white);
  -webkit-text-stroke: 0;
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.045em;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 22px);
  background: transparent;
  align-items: stretch;
}

.case-card {
  position: relative;
  min-height: clamp(380px, 31vw, 500px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 252, 252, 0.075), rgba(255, 252, 252, 0.018)),
    #050505;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08) brightness(0.76);
  transform: scale(1.015);
  transition: transform 700ms var(--ease), filter 700ms var(--ease);
}

.case-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.24) 32%, rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 78% 18%, rgba(255, 101, 15, 0.14), transparent 18rem);
  transition: background 500ms var(--ease);
}

.case-title,
.case-arrow,
.case-label {
  position: absolute;
  z-index: 2;
}

.case-label {
  top: 22px;
  left: 22px;
  right: 22px;
  color: rgba(255, 252, 252, 0.58);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-title {
  left: clamp(18px, 1.7vw, 26px);
  right: clamp(56px, 5vw, 82px);
  bottom: clamp(20px, 2vw, 28px);
  color: var(--white);
  font-family: "Ground SF Pro Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(1.65rem, 2.25vw, 2.45rem);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: none;
  hyphens: none;
}

.no-break {
  white-space: nowrap;
}

.case-arrow {
  right: clamp(18px, 1.7vw, 26px);
  bottom: clamp(20px, 2vw, 28px);
  z-index: 4;
  color: var(--orange);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  width: clamp(38px, 3.4vw, 44px);
  height: clamp(38px, 3.4vw, 44px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 101, 15, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition: transform 260ms var(--ease);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 252, 252, 0.14), transparent 24%),
    linear-gradient(315deg, rgba(255, 101, 15, 0.22), transparent 28%);
  opacity: 0;
  transition: opacity 420ms var(--ease);
}

.case-card:hover {
  border-color: rgba(255, 101, 15, 0.34);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.46), 0 0 64px rgba(255, 101, 15, 0.12);
  transform: translateY(-8px);
}

.case-card:hover img {
  filter: saturate(0.96) contrast(1.1) brightness(0.94);
  transform: scale(1.055);
}

.case-card:hover .case-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.58)),
    radial-gradient(circle at 78% 18%, rgba(255, 101, 15, 0.2), transparent 18rem);
}

.case-card:hover::after {
  opacity: 1;
}

.case-card:hover .case-arrow {
  transform: translate(5px, -5px);
}

.category-gallery {
  width: min(calc(100% - 40px), 1320px);
  margin: clamp(76px, 10vw, 130px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.showreel-head {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 70px);
}

.showreel-head h2 {
  max-width: 900px;
  font-size: clamp(2.35rem, 6.6vw, 7.15rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
}

.showreel-player {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
  border-radius: 10px;
  isolation: isolate;
}

.showreel-player::before {
  content: "";
  position: absolute;
  inset: auto 5% -34px;
  z-index: -2;
  height: 42%;
  border-radius: 999px;
  background: rgba(255, 101, 15, 0.34);
  filter: blur(70px);
  opacity: 0.88;
}

.showreel-player::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 252, 252, 0.22), rgba(255, 101, 15, 0.44), rgba(255, 252, 252, 0.08)),
    radial-gradient(circle at 50% 100%, rgba(255, 101, 15, 0.36), transparent 56%);
  filter: blur(0.2px);
  opacity: 0.86;
}

.showreel-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.14);
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(255, 252, 252, 0.075), rgba(255, 252, 252, 0.02)),
    #030303;
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 252, 0.16),
    inset 0 0 34px rgba(255, 252, 252, 0.035),
    0 0 0 1px rgba(255, 101, 15, 0.12),
    0 34px 120px rgba(0, 0, 0, 0.62),
    0 0 90px rgba(255, 101, 15, 0.18);
}

.showreel-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 252, 252, 0.08), transparent 16%),
    radial-gradient(circle at 50% 108%, rgba(255, 101, 15, 0.22), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.showreel-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.category-gallery.single-column {
  grid-template-columns: 1fr;
  max-width: 1120px;
}

.video-work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 252, 252, 0.06), rgba(255, 252, 252, 0.02)),
    #050505;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.video-work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 252, 252, 0.1);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 252, 252, 0.12),
    0 0 42px rgba(255, 101, 15, 0.08);
}

.work-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(255, 252, 252, 0.1);
}

.work-media.is-vertical {
  aspect-ratio: 9 / 16;
  width: min(100%, 440px);
  margin: 0 auto;
  border-right: 1px solid rgba(255, 252, 252, 0.1);
  border-left: 1px solid rgba(255, 252, 252, 0.1);
}

.work-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.work-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
  opacity: 0;
  transition: opacity 260ms var(--ease), filter 420ms var(--ease);
  pointer-events: none;
}

.work-poster.is-ready {
  opacity: 1;
}

.work-media.is-poster-loading video {
  opacity: 0.72;
}

.video-work-card.is-playing .work-poster {
  opacity: 0;
}

.work-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  border: 1px solid rgba(255, 101, 15, 0.68);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 252, 252, 0.16), transparent 42%),
    rgba(255, 101, 15, 0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 34px rgba(255, 101, 15, 0.24), 0 20px 60px rgba(0, 0, 0, 0.34);
  color: var(--orange);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), opacity 220ms var(--ease);
}

.work-play::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--orange);
  transform: translate(-38%, -50%);
}

.work-play:hover {
  border-color: var(--orange);
  background: rgba(255, 101, 15, 0.26);
  transform: translate(-50%, -50%) scale(1.06);
}

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

.work-content {
  padding: clamp(18px, 2vw, 26px);
}

.work-content span {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-content h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-content p {
  max-width: 620px;
  margin: 14px 0 0;
  color: rgba(255, 252, 252, 0.62);
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.58;
}

.empty-category {
  grid-column: 1 / -1;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid rgba(255, 252, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 252, 0.035);
  color: rgba(255, 252, 252, 0.64);
  font-size: clamp(1.08rem, 1.8vw, 1.42rem);
  font-weight: 300;
  line-height: 1.55;
}

.photo-niche {
  width: min(calc(100% - 40px), 1320px);
  margin: clamp(12px, 1.4vw, 18px) auto 0;
}

.photo-niche:first-of-type {
  margin-top: clamp(44px, 6vw, 78px);
}

.photo-niche-head {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  margin: 0;
  padding: clamp(20px, 2.8vw, 34px);
  border: 1px solid rgba(255, 252, 252, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 252, 252, 0.07), rgba(255, 252, 252, 0.018)),
    rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 252, 252, 0.08), 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.photo-niche-head:hover,
.photo-niche.is-open .photo-niche-head {
  border-color: rgba(255, 101, 15, 0.34);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 101, 15, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 252, 252, 0.085), rgba(255, 252, 252, 0.025)),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 252, 252, 0.1), 0 28px 90px rgba(255, 101, 15, 0.08), 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

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

.photo-count {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.photo-niche-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.photo-niche-description {
  display: block;
  max-width: 620px;
  margin: 0;
  color: rgba(255, 252, 252, 0.62);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 300;
  line-height: 1.62;
}

.photo-toggle-icon {
  min-width: 132px;
  min-height: 46px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 252, 252, 0.14);
  border-radius: 999px;
  background: rgba(255, 252, 252, 0.04);
  color: var(--orange);
  font-size: 0;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.photo-toggle-icon::before {
  content: "Ver fotos";
  font-size: 0.74rem;
}

.photo-toggle-icon::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
}

.photo-niche-head:hover .photo-toggle-icon,
.photo-niche.is-open .photo-toggle-icon {
  border-color: rgba(255, 101, 15, 0.5);
  background: rgba(255, 101, 15, 0.09);
  color: var(--white);
}

.photo-niche.is-open .photo-toggle-icon::before {
  content: "Fechar";
}

.photo-niche.is-open .photo-toggle-icon::after {
  content: "×";
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: clamp(130px, 12vw, 190px);
  gap: clamp(10px, 1.3vw, 18px);
  padding-top: clamp(14px, 2vw, 24px);
}

.photo-grid[hidden] {
  display: none;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 252, 0.035);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.photo-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 78% 12%, rgba(255, 101, 15, 0.16), transparent 14rem);
  opacity: 0;
  transition: opacity 360ms var(--ease);
}

.photo-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04) brightness(0.9);
  transform: scale(1.01);
  transition: transform 520ms var(--ease), filter 520ms var(--ease);
}

.photo-item:hover::after {
  opacity: 1;
}

.photo-item:hover img {
  filter: saturate(1) contrast(1.08) brightness(1);
  transform: scale(1.045);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 101, 15, 0.14), transparent 26rem),
    rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(22px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms var(--ease), visibility 240ms var(--ease);
}

.photo-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-stage {
  position: relative;
  width: min(100%, 1180px);
  height: min(82vh, 760px);
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(82vh, 760px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.58);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 252, 252, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 252, 0.06);
  color: var(--white);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transition: border-color 220ms var(--ease), color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.lightbox-close {
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
}

.lightbox-nav {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: clamp(12px, 3vw, 36px);
}

.lightbox-next {
  right: clamp(12px, 3vw, 36px);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: rgba(255, 101, 15, 0.68);
  background: rgba(255, 101, 15, 0.13);
  color: var(--orange);
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3vw, 34px);
  color: rgba(255, 252, 252, 0.68);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

body.lightbox-open {
  overflow: hidden;
}

.photo-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.photo-tall {
  grid-column: span 3;
  grid-row: span 3;
}

.photo-standard {
  grid-column: span 3;
  grid-row: span 2;
}

.photo-large {
  grid-column: span 5;
  grid-row: span 3;
}

.case-page .site-footer {
  border-top: 1px solid rgba(255, 252, 252, 0.1);
  background:
    radial-gradient(circle at 82% 50%, rgba(255, 101, 15, 0.09), transparent 24rem),
    #000;
}

.case-page .footer-inner {
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

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

.project-row {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 20px;
  min-height: clamp(84px, 9vw, 120px);
  border-bottom: 1px solid var(--line);
  color: rgba(255, 252, 252, 0.76);
  transition: color 260ms var(--ease), background 260ms var(--ease), padding 260ms var(--ease);
}

.project-row::before {
  content: "";
  position: absolute;
  inset: 10px -14px;
  z-index: -1;
  border: 1px solid rgba(255, 252, 252, 0);
  border-radius: 8px;
  background: rgba(255, 252, 252, 0);
  backdrop-filter: blur(0);
  transition: background 260ms var(--ease), border-color 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

.project-row:hover {
  color: var(--white);
  padding-left: 16px;
}

.project-row:hover::before {
  border-color: rgba(255, 252, 252, 0.11);
  background: rgba(255, 252, 252, 0.055);
  backdrop-filter: blur(16px);
}

.project-number {
  color: rgba(194, 194, 194, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.project-name {
  color: inherit;
  font-size: clamp(2.05rem, 5.8vw, 5.55rem);
  font-weight: 840;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-arrow {
  justify-self: end;
  color: rgba(255, 252, 252, 0.6);
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.project-row:hover .project-arrow {
  color: var(--orange);
  transform: translate(3px, -3px);
}

.project-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 250px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 252, 0.16);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.9);
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
}

.project-preview.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.numbers {
  overflow: hidden;
  background:
    radial-gradient(circle at 17% 38%, rgba(255, 252, 252, 0.055), transparent 22rem),
    linear-gradient(180deg, rgba(255, 252, 252, 0.02), transparent);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 22px);
}

.number-card {
  position: relative;
  min-height: 250px;
  padding: clamp(28px, 3.2vw, 42px);
  overflow: hidden;
  transition:
    border-color 260ms var(--ease),
    background 260ms var(--ease),
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.number-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 18%), rgba(255, 101, 15, 0.2), transparent 16rem),
    linear-gradient(145deg, rgba(255, 101, 15, 0.08), transparent 52%);
  opacity: 0;
  transition: opacity 260ms var(--ease);
}

.number-card::before {
  content: "";
  position: absolute;
  left: clamp(28px, 3.2vw, 42px);
  top: clamp(28px, 3.2vw, 42px);
  width: 46px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 26px rgba(255, 101, 15, 0.42);
  transition: width 260ms var(--ease), box-shadow 260ms var(--ease);
}

.number-card strong {
  display: block;
  margin-top: clamp(58px, 5vw, 72px);
  color: var(--white);
  font-size: clamp(3rem, 4.6vw, 4.5rem);
  font-weight: 780;
  line-height: 0.88;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  transition: color 260ms var(--ease), text-shadow 260ms var(--ease), transform 260ms var(--ease);
}

.number-card strong::before {
  content: "+";
  color: var(--orange);
  font-size: 0.46em;
  vertical-align: 0.64em;
}

.number-card.percent-card strong::before {
  content: "";
}

.number-card.percent-card strong::after {
  content: "%";
  color: var(--orange);
  font-size: 0.42em;
  vertical-align: 0.72em;
}

.number-card p {
  max-width: 220px;
  margin: 22px 0 0;
  color: rgba(255, 252, 252, 0.7);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 260ms var(--ease);
}

.number-card:hover,
.number-card.is-hovered {
  border-color: rgba(255, 101, 15, 0.38);
  background:
    linear-gradient(145deg, rgba(255, 101, 15, 0.105), rgba(255, 252, 252, 0.032)),
    rgba(255, 252, 252, 0.045);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46), 0 0 36px rgba(255, 101, 15, 0.11);
  transform: translateY(-5px);
}

.number-card:hover::after,
.number-card.is-hovered::after {
  opacity: 1;
}

.number-card:hover::before,
.number-card.is-hovered::before {
  width: 72px;
  box-shadow: 0 0 34px rgba(255, 101, 15, 0.72);
}

.number-card:hover strong,
.number-card.is-hovered strong {
  color: var(--orange);
  text-shadow: 0 0 26px rgba(255, 101, 15, 0.24);
  transform: translateY(-2px);
}

.number-card:hover p,
.number-card.is-hovered p {
  color: rgba(255, 252, 252, 0.84);
}

.contact {
  overflow: hidden;
  padding-bottom: clamp(36px, 6vw, 72px);
  background:
    radial-gradient(circle at 83% 46%, rgba(255, 101, 15, 0.11), transparent 24rem),
    linear-gradient(180deg, transparent 0%, rgba(255, 252, 252, 0.018) 34%, #000 100%);
}

.contact::before {
  content: "";
  position: absolute;
  right: -18vw;
  bottom: 5vw;
  width: 46vw;
  height: 46vw;
  border-radius: 999px;
  background: rgba(255, 101, 15, 0.14);
  filter: blur(90px);
  opacity: 0.64;
  z-index: -1;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 6vw, 80px);
  padding: clamp(28px, 5vw, 62px);
  overflow: hidden;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 252, 252, 0.05), transparent 38%, rgba(255, 101, 15, 0.045));
  pointer-events: none;
}

.contact-main,
.contact-list {
  position: relative;
  z-index: 1;
}

.contact-main p:not(.section-kicker) {
  max-width: 570px;
  margin: 26px 0 0;
  color: rgba(255, 252, 252, 0.64);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 300;
  line-height: 1.72;
  letter-spacing: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.contact-actions .button {
  margin-top: 0;
}

.contact-actions .button img {
  width: 17px;
  height: 17px;
  filter: invert(1);
  opacity: 0.88;
}

.mail-icon {
  display: inline-grid;
  place-items: center;
  position: relative;
  width: 18px;
  height: 14px;
  border: 1.6px solid currentColor;
  border-radius: 3px;
  color: rgba(255, 252, 252, 0.88);
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  width: 9px;
  height: 1.6px;
  background: currentColor;
}

.mail-icon::before {
  left: 1px;
  transform: rotate(33deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-33deg);
}

.primary-button {
  border-color: rgba(255, 101, 15, 0.72);
  background: rgba(255, 101, 15, 0.1);
}

.secondary-button {
  background: rgba(255, 252, 252, 0.035);
}

.email-link {
  position: relative;
  color: rgba(255, 252, 252, 0.66);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  transition: color 180ms var(--ease);
}

.email-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: rgba(255, 101, 15, 0.72);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.email-link:hover {
  color: var(--white);
}

.email-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 252, 252, 0.13);
  border-radius: 999px;
  background: rgba(255, 252, 252, 0.04);
  backdrop-filter: blur(14px);
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.social-icon:hover {
  border-color: rgba(255, 101, 15, 0.58);
  background: rgba(255, 101, 15, 0.09);
  transform: translateY(-2px);
}

.social-icon img {
  width: 18px;
  height: 18px;
  filter: invert(1);
  opacity: 0.82;
}

.contact-list {
  display: grid;
  align-content: center;
  gap: 0;
  margin: 0;
  font-style: normal;
  border-top: 1px solid var(--line);
}

.contact-item {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-item span {
  color: rgba(194, 194, 194, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong {
  color: rgba(255, 252, 252, 0.86);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 560;
  word-break: break-word;
  transition: color 180ms var(--ease);
}

.contact-item:hover strong {
  color: var(--orange);
}

.site-footer {
  background: #000;
}

.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(194, 194, 194, 0.68);
}

.footer-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.footer-copy {
  margin: 0;
  color: rgba(194, 194, 194, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(10px);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease), filter 760ms var(--ease);
}

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

.project-list[data-reveal] {
  transform: translateY(18px);
}

.course-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 101, 15, 0.12), transparent 24rem),
    radial-gradient(circle at 12% 72%, rgba(255, 252, 252, 0.055), transparent 22rem),
    #000;
}

.course-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 8vw, 116px) 0 clamp(64px, 8vw, 110px);
  isolation: isolate;
}

.course-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 252, 252, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 252, 252, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 42%, black, transparent 72%);
  opacity: 0.28;
}

.course-shell {
  width: min(calc(100% - 40px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.course-copy h1 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.45rem, 8.2vw, 8.7rem);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.course-copy h1 span {
  display: block;
  color: var(--orange);
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: lowercase;
  text-shadow: 0 0 36px rgba(255, 101, 15, 0.18);
}

.course-lead {
  max-width: 650px;
  margin: clamp(26px, 4vw, 42px) 0 0;
  color: rgba(255, 252, 252, 0.66);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 300;
  line-height: 1.72;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(26px, 3.5vw, 40px);
}

.course-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 252, 252, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 252, 0.035);
  color: rgba(255, 252, 252, 0.72);
  backdrop-filter: blur(14px);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: clamp(28px, 4vw, 48px);
}

.course-actions .button {
  margin-top: 0;
}

.course-actions .button img {
  width: 17px;
  height: 17px;
  filter: invert(1);
  opacity: 0.88;
}

.course-actions p {
  margin: 0;
  color: rgba(255, 252, 252, 0.54);
  font-family: "Ground Baskerville", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.4vw, 1.26rem);
  letter-spacing: -0.02em;
}

.course-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
}

.course-phone {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 14.5;
  padding: 12px;
  border-radius: 28px;
  transition: border-color 300ms var(--ease), transform 300ms var(--ease), box-shadow 300ms var(--ease);
}

.course-phone::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  border: 1px solid rgba(255, 252, 252, 0.14);
  border-radius: 20px;
  pointer-events: none;
}

.course-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 101, 15, 0.2), transparent 15rem),
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.7));
  opacity: 0.78;
  pointer-events: none;
}

.course-phone img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.08) brightness(0.82);
  transition: filter 420ms var(--ease), transform 520ms var(--ease);
}

.phone-bar {
  position: absolute;
  left: 50%;
  top: 24px;
  z-index: 4;
  width: 74px;
  height: 7px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  transform: translateX(-50%);
}

.phone-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 30px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.phone-overlay span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.phone-overlay strong {
  max-width: 280px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.course-phone:hover {
  border-color: rgba(255, 101, 15, 0.42);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.55), 0 0 48px rgba(255, 101, 15, 0.14);
  transform: translateY(-5px);
}

.course-phone:hover img {
  filter: grayscale(0) contrast(1.12) brightness(0.96);
  transform: scale(1.035);
}

.course-note {
  position: absolute;
  left: -36px;
  bottom: -22px;
  z-index: 5;
  max-width: 230px;
  padding: 16px 18px;
  background:
    linear-gradient(145deg, rgba(255, 252, 252, 0.13), rgba(255, 252, 252, 0.045)),
    rgba(0, 0, 0, 0.68);
  color: rgba(255, 252, 252, 0.78);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-note::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 12px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(255, 101, 15, 0.58);
}

@keyframes drift {
  from {
    transform: translate3d(-2%, -1%, 0) rotate(0deg);
  }

  to {
    transform: translate3d(2%, 1%, 0) rotate(10deg);
  }
}

@keyframes scrollPulse {
  0% {
    transform: translateY(-24px);
    opacity: 0;
  }

  30%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateY(58px);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-areas:
      "copy"
      "visual";
  }

  .about-visual {
    justify-self: start;
    width: min(100%, 520px);
  }

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

  .case-card {
    min-height: clamp(320px, 50vw, 460px);
    aspect-ratio: 4 / 3;
  }

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

  .project-row {
    grid-template-columns: 56px minmax(0, 1fr) 34px;
    gap: 14px;
    padding: 26px 0;
  }

  .project-row:hover {
    padding-left: 10px;
  }

  .project-preview {
    display: none;
  }
}

@media (max-width: 760px) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    top: 0;
    width: 100%;
    min-height: 76px;
    grid-template-columns: 1fr auto;
    justify-content: initial;
    gap: 16px;
    padding: 10px 14px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.12)),
      rgba(0, 0, 0, 0.08);
  }

  .brand {
    grid-area: auto;
    justify-self: start;
    margin-left: 0;
  }

  .brand img {
    width: 132px;
    height: auto;
    max-height: 42px;
  }

  .menu-toggle {
    grid-area: auto;
    justify-self: end;
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 252, 252, 0.13);
    border-radius: 14px;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(24px);
    box-shadow: 0 22px 80px rgba(0, 0, 0, 0.44);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 220ms var(--ease), visibility 220ms var(--ease), transform 220ms var(--ease);
    margin-right: 0;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 52px;
    padding: 0 14px;
    border-bottom: 1px solid rgba(194, 194, 194, 0.12);
    border-radius: 0;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }

  .site-nav .nav-social {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 14px;
    border: 0;
    border-bottom: 1px solid rgba(194, 194, 194, 0.12);
    border-radius: 0;
    background: transparent;
  }

  .site-nav a:last-child,
  .site-nav .nav-social:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 100svh;
    padding: 112px 18px 104px;
  }

  .hero-title {
    font-size: clamp(3rem, 12.2vw, 5.05rem);
    line-height: 0.82;
  }

  .hero-title span:nth-child(2) {
    font-size: 1.18em;
    line-height: 0.68;
    transform: translateY(-0.16em);
  }

  .hero-signature {
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
  }

  .hero-pretitle {
    margin-bottom: 28px;
  }

  .hero-copy {
    margin-top: 22px;
  }

  .scroll-indicator {
    right: 18px;
    bottom: 22px;
  }

  .video-controls {
    left: 18px;
    right: 18px;
    bottom: 22px;
    justify-content: center;
    gap: 12px;
  }

  .video-control {
    flex: 0 1 auto;
    min-width: 0;
    font-size: 0.62rem;
  }

  .about,
  .projects,
  .numbers,
  .impact,
  .contact {
    padding: 76px 0;
  }

  .section-shell,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .section-line {
    width: min(calc(100% - 28px), var(--max));
    margin-bottom: 42px;
  }

  .about h2,
  .section-head h2,
  .contact h2 {
    font-size: clamp(2.25rem, 11.8vw, 4.1rem);
    line-height: 0.94;
    letter-spacing: -0.04em;
  }

  .impact-title {
    font-size: clamp(2.05rem, 10.8vw, 4.6rem);
    padding: 22px 16px;
  }

  .editorial-text {
    max-width: none;
    font-size: 0.96rem;
    line-height: 1.78;
    color: rgba(255, 252, 252, 0.66);
  }

  .section-head {
    display: grid;
  }

  .projects .section-head h2 {
    font-size: clamp(3.2rem, 16vw, 5.8rem);
  }

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

  .case-card {
    min-height: 330px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  .case-label {
    top: 18px;
    left: 18px;
    right: 18px;
  }

  .case-title {
    font-size: clamp(1.85rem, 8.6vw, 2.65rem);
    right: 70px;
    letter-spacing: -0.05em;
  }

  .category-gallery {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
  }

  .work-media.is-vertical {
    width: min(100%, 320px);
  }

  .photo-niche {
    width: min(calc(100% - 28px), var(--max));
  }

  .photo-niche-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-toggle-icon {
    justify-self: start;
  }

  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 104px;
  }

  .photo-wide,
  .photo-large {
    grid-column: span 4;
    grid-row: span 2;
  }

  .photo-tall,
  .photo-standard {
    grid-column: span 2;
    grid-row: span 2;
  }

  .case-main {
    padding-top: 116px;
  }

  .case-hero,
  .case-player {
    width: min(calc(100% - 28px), 1320px);
  }

  .case-hero h1 {
    font-size: clamp(2.45rem, 11vw, 4.35rem);
    line-height: 1;
  }

  .case-info {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .case-meta-row {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .project-row {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr) 28px;
    padding: 24px 0;
  }

  .project-name {
    font-size: clamp(2rem, 11vw, 3.25rem);
    overflow-wrap: anywhere;
  }

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

  .number-card {
    min-height: 164px;
    padding: 24px;
  }

  .number-card::before {
    left: 24px;
    top: 24px;
  }

  .number-card strong {
    margin-top: 52px;
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .contact-card {
    padding: 24px 20px;
    border-radius: 8px;
  }

  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.76rem;
  }

  .footer-inner {
    padding: 28px 0;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 12px;
  }

  .footer-brand img {
    width: 42px;
    height: 42px;
  }

  .course-hero {
    min-height: auto;
    padding: 72px 0;
  }

  .course-shell {
    width: min(calc(100% - 28px), 1280px);
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .course-copy h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

  .course-lead {
    font-size: 1rem;
  }

  .course-tags span {
    font-size: 0.66rem;
  }

  .course-actions {
    display: grid;
  }

  .course-visual {
    justify-self: center;
    width: min(100%, 360px);
  }

  .course-note {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 14px auto 0;
    max-width: none;
  }
}

@media (max-width: 430px) {
  .eyebrow,
  .section-kicker {
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12.4vw, 4.45rem);
  }

  .hero-title span:nth-child(2) {
    font-size: 1.2em;
    transform: translateY(-0.18em);
  }

  .project-row {
    grid-template-columns: 1fr 28px;
  }

  .project-number {
    grid-column: 1 / 3;
  }
}

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

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