:root {
  --bg: #101010;
  --surface: #171717;
  --surface-2: #1d1d1d;
  --text: #f4f3ee;
  --muted: #8c8b85;
  --soft: #b9b8b1;
  --line: rgba(244, 243, 238, .13);
  --line-soft: rgba(244, 243, 238, .07);
  --accent: #d7ff45;
  --accent-dark: #bde72d;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font-sans: "Manrope", Arial, sans-serif;
  --font-display: "DM Sans", Arial, sans-serif;
}

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

html {
  background: var(--bg);
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.loading,
body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}

::selection {
  background: var(--accent);
  color: #101010;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

#smooth-wrapper,
#smooth-content {
  width: 100%;
  position: relative;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #383838;
  border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* PRELOADER */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--accent);
  pointer-events: none;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(255, 255, 255, .2), transparent 30%), var(--accent);
}

.preloader-content {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100% - 40px));
  color: #101010;
}

.preloader-brand {
  overflow: hidden;
  margin-bottom: 20px;
}

.preloader-logo-text {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.05em;
}

.preloader-counter {
  font-size: clamp(5rem, 13vw, 8rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.09em;
  margin-bottom: 25px;
}

.percent-symbol {
  font-size: .28em;
  vertical-align: top;
}

.preloader-progress-wrap {
  height: 2px;
  width: 100%;
  overflow: hidden;
  background: rgba(16, 16, 16, .2);
  margin-bottom: 12px;
}

.preloader-progress-bar {
  width: 0;
  height: 100%;
  background: #101010;
}

.preloader-status {
  color: rgba(16, 16, 16, .65);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* CURSOR */
.cursor-wrapper {
  position: fixed;
  inset: 0;
  z-index: 100000;
  pointer-events: none;
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 243, 238, .35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.cursor-text {
  opacity: 0;
  transform: scale(.7);
  color: #101010;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .1em;
  transition: opacity .2s, transform .2s;
}

.cursor-ring.hover-link {
  width: 48px;
  height: 48px;
  border-color: rgba(244, 243, 238, .7);
}

.cursor-ring.hover-play {
  width: 78px;
  height: 78px;
  background: var(--accent);
  border-color: transparent;
}

.cursor-ring.hover-play .cursor-text {
  opacity: 1;
  transform: scale(1);
}

@media (hover:none),
(max-width:800px) {
  .cursor-wrapper {
    display: none;
  }
}

/* BACKGROUND */
.mesh-bg-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .18;
}

.mesh-glow {
  position: absolute;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(130px);
}

.glow-1 {
  top: -18%;
  right: 2%;
  background: rgba(215, 255, 69, .16);
}

.glow-2 {
  right: -20%;
  bottom: -10%;
  background: rgba(215, 255, 69, .07);
}

.glow-3 {
  left: -20%;
  top: 45%;
  background: rgba(255, 255, 255, .025);
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
  padding: 0 clamp(18px, 3vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(16, 16, 16, .78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .35s var(--ease), background .35s var(--ease);
}

.nav.scrolled {
  height: 58px;
}

.logo-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  width: px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -.05em;
}

.nav-logo span {
  color: #77766f;
}

.nav-logo i {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

.nav-links a {
  position: relative;
  padding: 7px 0;
  color: #989791;
  font-size: .68rem;
  font-weight: 800;
  transition: color .25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width .3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-availability {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 92px;
  padding: 9px 14px;
  overflow: hidden;
  border: 1px solid white;
  border-radius: 999px;
  background: transparent;
  color: #f4f3ee;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: color .3s var(--ease), border-color .3s ease, transform .3s var(--ease);
}

.nav-availability::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--accent);
  transform: translateY(105%);
  transition: transform .45s var(--ease);
}

.nav-availability:hover {
  color: #101010;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.nav-availability:hover::before {
  transform: translateY(0);
}

.contact-card-static b {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(215, 255, 69, .08);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
}

.nav-toggle span {
  height: 2px;
  background: #fff;
  border-radius: 99px;
  transition: transform .3s var(--ease), width .3s var(--ease);
}

.nav-toggle span:first-child {
  width: 24px;
}

.nav-toggle span:last-child {
  width: 15px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  width: 22px;
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  width: 22px;
  transform: translateY(-4px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 990;
  display: flex;
  flex-direction: column;
  padding: 96px 22px 26px;
  background: #101010;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(215, 255, 69, .1), transparent 40%);
}

.mobile-menu-top,
.mobile-menu-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #67665f;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.mobile-menu-links {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
}

.mobile-link {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: clamp(3rem, 15vw, 6rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.08em;
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}

.mobile-link small {
  color: #666;
  font-size: .58rem;
  letter-spacing: 0;
}

.mobile-link:hover {
  color: var(--accent);
}

.mobile-menu-footer {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  text-transform: none;
  letter-spacing: 0;
}

.mobile-menu-footer a {
  color: #eee;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 108px clamp(16px, 3vw, 44px) 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  z-index: -2;
  background: radial-gradient(circle at 70% 45%, rgba(215, 255, 69, .08), transparent 25%);
}

.hero-grid {
  position: absolute;
  inset: 70px clamp(16px, 3vw, 44px) 0;
  z-index: -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  pointer-events: none;
}

.hero-grid span {
  border-left: 1px solid var(--line-soft);
}

.hero-grid span:last-child {
  border-right: 1px solid var(--line-soft);
}

.hero-topline {
  position: absolute;
  top: 95px;
  left: clamp(16px, 3vw, 44px);
  right: clamp(16px, 3vw, 44px);
  display: flex;
  justify-content: space-between;
  color: #6d6c66;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1250px, 100%);
  margin: auto;
}

.hero-eyebrow-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(215, 255, 69, .35)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(215, 255, 69, 0)
  }
}

.hero-eyebrow {
  color: #aaa9a2;
  font-size: .61rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1120px;
  color: #f4f3ee;
  font-family: var(--font-display);
  font-size: clamp(4.3rem, 10.2vw, 10.5rem);
  font-weight: 700;
  line-height: .79;
  letter-spacing: -.095em;
}

.line-wrap {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  will-change: transform;
}

.accent-line {
  padding-left: clamp(30px, 7vw, 100px);
}

.accent-line .word {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-top: 46px;
  padding-left: clamp(30px, 7vw, 100px);
}

.hero-meta {
  max-width: 410px;
  color: #a2a19a;
  font-size: .78rem;
  line-height: 1.65;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 7px 6px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f4f3ee;
  color: #111;
  font-size: .66rem;
  font-weight: 800;
  transition: transform .3s var(--ease), background .3s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  background: var(--accent);
}

.cta-circle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  transition: transform .3s var(--ease);
}

.hero-cta:hover .cta-circle {
  transform: rotate(45deg);
}

.hero-side-note {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  top: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  color: #66655f;
  font-size: .53rem;
  font-weight: 800;
  letter-spacing: .08em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-side-note span:first-child {
  color: var(--accent);
}

.hero-scroll {
  position: absolute;
  right: clamp(16px, 3vw, 44px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-txt {
  color: #66655f;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.scroll-line-container {
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.scroll-line {
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(-100%)
  }

  55%,
  100% {
    transform: translateY(100%)
  }
}

/* MARQUEE */
.marquee-divider {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: 14px 0;
  background: var(--accent);
  color: #101010;
  border-top: 1px solid #101010;
  border-bottom: 1px solid #101010;
  transform: rotate(-.25deg) scale(1.01);
}

.marquee-wrapper {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marquee 28s linear infinite;
}

.marquee-track {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.marquee-track span {
  margin-right: 24px;
  font-size: clamp(.62rem, .95vw, .75rem);
  font-weight: 800;
  letter-spacing: .08em;
  white-space: nowrap;
}

.marquee-track b {
  margin-right: 24px;
  font-size: .75rem;
}

@keyframes marquee {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

/* WORK */
.work {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 12vw, 170px) clamp(16px, 3vw, 44px);
  background: var(--bg);
}

.section-header {
  width: min(1250px, 100%);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 40px;
}

.section-subtitle-tag,
.about-tag,
.contact-label {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-title {
  color: #f4f3ee;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 800;
  line-height: .76;
  letter-spacing: -.095em;
}

.section-title em {
  color: #77766f;
  font-family: var(--font-display);
  font-weight: 400;
}

.section-intro {
  max-width: 340px;
  padding-bottom: 4px;
  justify-self: end;
}

.section-intro p {
  color: #b0afa8;
  font-size: .78rem;
  line-height: 1.65;
  margin-bottom: 18px;
}

.section-intro span {
  color: #6d6c66;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.projects-grid {
  width: min(1250px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 56px 22px;
}

.project-card {
  position: relative;
  width: 100%;
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}

.project-card:nth-child(1) {
  grid-column: span 9;
}

.project-card:nth-child(2) {
  grid-column: span 3;
}

.project-card:nth-child(3) {
  grid-column: span 3;
}

.project-card:nth-child(4) {
  grid-column: span 9;
}

.project-card:nth-child(1) .project-visual,
.project-card:nth-child(4) .project-visual {
  aspect-ratio: 16/9;
}

.project-card:nth-child(2) .project-visual,
.project-card:nth-child(3) .project-visual {
  aspect-ratio: 9/16;
}

.project-card.is-hidden {
  position: absolute;
  visibility: hidden;
  height: 0;
  margin: 0 !important;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.project-button {
  width: 100%;
  display: block;
  text-align: left;
}

.project-visual {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #191919;
}

.project-img-wrapper {
  position: absolute;
  inset: -3%;
  width: 106%;
  height: 106%;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.12) saturate(.85) contrast(1.04);
  transition: transform .8s var(--ease), filter .5s ease;
}

.project-button:hover .project-img-wrapper img {
  transform: scale(1.045);
  filter: grayscale(0) saturate(1) contrast(1.06);
}

.project-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03), rgba(0, 0, 0, .7)), linear-gradient(120deg, rgba(215, 255, 69, .1), transparent 40%);
  opacity: .65;
  transition: opacity .4s ease;
}

.project-button:hover .project-overlay-glow {
  opacity: .9;
}

.project-number {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 16px;
  color: #fff;
  mix-blend-mode: difference;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.project-play-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: rgba(16, 16, 16, .65);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  backdrop-filter: blur(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s ease;
}

.project-button:hover .project-play-badge {
  opacity: 0;
  transform: translateY(0);
  background: var(--accent);
  color: #101010;
  border-color: var(--accent);
}

.project-play-badge span {
  font-size: .55rem;
  font-weight: 800;
}

.play-arrow {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

.project-details {
  margin-top: 15px;
}

.project-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}

.project-id {
  color: var(--accent);
  font-size: .59rem;
  font-weight: 800;
}

.project-tag {
  color: #686761;
  font-size: .56rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.project-title {
  color: #f0efe9;
  font-size: clamp(1.45rem, 2.7vw, 2.25rem);
  font-weight: 800;
  line-height: .92;
  letter-spacing: -.06em;
  transition: color .25s ease;
}

.project-button:hover .project-title {
  color: var(--accent);
}

.project-description {
  max-width: 43ch;
  margin-top: 8px;
  color: #77766f;
  font-size: .7rem;
  line-height: 1.6;
}

/* ABOUT */
.about {
  position: relative;
  z-index: 2;
  padding: clamp(100px, 12vw, 160px) clamp(16px, 3vw, 44px);
  border-top: 1px solid var(--line);
  background: #151515;
}

.about-kicker {
  width: min(1250px, 100%);
  margin: 0 auto 60px;
  color: #686761;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-container {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.about-photo-placeholder {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  padding: 20px;
  border: 1px solid var(--line);
  background: #101010;
  color: #d6d5cf;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Full-card image */
.about-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Text above image */
.about-photo-placeholder span,
.about-photo-placeholder small {
  position: relative;
  z-index: 2;
}

.about-photo-placeholder span {
  font-size: .84rem;
  font-weight: 800;
}

.about-photo-placeholder small {
  margin-top: 4px;
  color: #66655f;
  font-size: .64rem;
  line-height: 1.2;
}

/* Diagonal shine above image */
.about-photo-placeholder::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -50%;
  left: -100%;
  width: 35%;
  height: 200%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.073),
      transparent);
  transform: rotate(25deg);
  animation: shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {

  0%,
  50% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

.about-headline {
  max-width: 720px;
  margin-bottom: 28px;
  color: #f4f3ee;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: .87;
  letter-spacing: -.075em;
}

.about-headline em {
  color: #77766f;
  font-family: var(--font-display);
  font-weight: 400;
}

.about-body {
  max-width: 590px;
}

.about-body p {
  margin-bottom: 16px;
  color: #989791;
  font-size: clamp(.82rem, 1vw, .94rem);
  line-height: 1.75;
}

.about-body p:first-child {
  color: #deddd6;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-signature {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 30px;
}

.about-signature span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(244, 243, 238, .1);
  border-radius: 999px;
  background: rgba(244, 243, 238, .035);
  color: #aaa9a2;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .3s var(--ease);
}

/* CONTACT */
.contact {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: clamp(100px, 13vw, 175px) clamp(16px, 3vw, 44px);
  background: #141814;
  color: var(--text);
  border-top: 1px solid rgba(215, 255, 69, .16);
}

.contact-bg-glow {
  position: absolute;
  width: 760px;
  height: 760px;
  right: -280px;
  top: -300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 255, 69, .18) 0%, rgba(215, 255, 69, .06) 32%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.contact-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.contact-label {
  color: var(--accent);
  margin: 0;
}

.contact-note {
  max-width: 250px;
  color: #8f8e87;
  font-size: .68rem;
  line-height: 1.5;
  text-align: right;
}

.contact-headline {
  max-width: 1050px;
  margin: 70px 0 48px;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: .76;
  letter-spacing: -.095em;
}

.contact-headline em {
  color: #77766f;
  font-weight: 400;
}

.contact-cta-wrapper {
  margin-bottom: 85px;
}

.contact-cta-txt {
  font-size: 1rem;
}

.contact-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  padding: 17px 19px 17px 23px;
  border: 1px solid rgba(244, 243, 238, .18);
  border-radius: 999px;
  background: #f4f3ee;
  color: #101010;
  font-size: .7rem;
  font-weight: 800;
  transition: transform .35s var(--ease), border-color .35s ease, color .35s ease;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateX(-102%);
  transition: transform .5s var(--ease);
}

.contact-cta:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  color: #101010;
}

.contact-cta:hover::before {
  transform: translateX(0);
}

.contact-arrow {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #101010;
  color: #fff;
  font-size: 1rem;
  transition: transform .35s var(--ease), background .35s ease, color .35s ease;
}

.contact-cta:hover .contact-arrow {
  transform: rotate(45deg);
}

.contact-details-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 243, 238, .12);
}

.contact-card-title {
  margin-bottom: 8px;
  color: #66655f;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-card-link {
  display: inline-block;
  color: #e6e5df;
  font-size: .77rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(244, 243, 238, .18);
  transition: color .25s ease, border-color .25s ease;
}

.contact-card-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-split {
  color: #55544f;
}

/* COPY TOOLTIP */
.copy-email {
  position: relative;
  cursor: pointer;
}

.copy-email::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  padding: 7px 11px;
  background: #fff;
  color: #111;
  border-radius: 7px;
  font-size: .65rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.copy-email:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer {
  padding: 55px clamp(22px, 4vw, 60px) 22px;
  background: #101010;
  color: #777;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.footer-main {
  min-height: 120px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand img {
  width: clamp(110px, 12vw, 180px);
  height: auto;
  opacity: .10;
  object-fit: contain;
  padding-bottom: 18px;
}

.footer-links {
  display: flex;
  gap: clamp(80px, 11vw, 170px);
  padding-top: 4px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}

.footer-links span {
  margin-bottom: 9px;
  color: #eee;
  font-size: .72rem;
  font-weight: 800;
}

.footer-links a {
  color: #85847e;
  font-size: .72rem;
  line-height: 1;
  text-decoration: none;
  transition: color .25s ease;
}

.footer-links a i {
  margin-left: 4px;
  color: var(--accent);
  font-style: normal;
  opacity: 0;
  transform: translate(-3px, 3px);
  display: inline-block;
  transition: opacity .25s ease, transform .25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translate(0, 0);
}

.footer-bottom {
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: #555;
  font-size: .58rem;
  letter-spacing: .03em;
}

/* VIDEO MODAL */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 99990;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .9);
  backdrop-filter: blur(8px);
}

.modal-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 28px;
  display: grid;
  place-items: center;
}

.modal-content {
  position: relative;
  width: min(1200px, 100%);
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .6);
}

.modal-player,
.modal-player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.modal-close {
  position: absolute;
  z-index: 3;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  backdrop-filter: blur(18px);
  color: #fff;
  transition: background .25s, transform .25s var(--ease);
}

.modal-close:hover {
  background-color: rgba(255, 0, 8, 0.511);
  transform: rotate(90deg);
}

/* CAL.COM BOOKING */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.booking-modal-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  height: min(650px, 90vh);
  overflow: hidden;
}

#my-cal-inline-15min {
  width: 100%;
  height: 100% !important;
}

@media (max-width: 600px) {
  .booking-modal {
    padding: 10px;
  }

  .booking-modal-content {
    height: 90vh;
    border-radius: 12px;
  }
}

/* RESPONSIVE */
@media (max-width:1050px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-availability {
    margin-left: auto;
    margin-right: 15px;
  }

  .hero-title {
    font-size: clamp(4rem, 10.8vw, 7.8rem);
  }
}

@media (max-width:800px) {
  .nav {
    height: 60px;
  }

  .nav-availability {
    display: none;
  }

  .hero {
    min-height: 760px;
    padding: 100px 16px 30px;
  }

  .hero-grid {
    inset: 60px 16px 0;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid span:nth-child(n+4) {
    display: none;
  }

  .hero-topline {
    top: 82px;
    left: 16px;
    right: 16px;
  }

  .hero-side-note {
    display: none;
  }

  .hero-title {
    font-size: clamp(3.8rem, 14vw, 6.5rem);
    line-height: .82;
  }

  .accent-line {
    padding-left: 0;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    padding-left: 0;
    gap: 22px;
    margin-top: 38px;
  }

  .hero-meta {
    max-width: 430px;
  }

  .hero-cta {
    justify-self: start;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-intro {
    justify-self: start;
  }

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

  .project-card:nth-child(n) {
    grid-column: span 1;
    padding-top: 0;
  }

  .project-card:nth-child(2) .project-visual,
  .project-card:nth-child(3) .project-visual {
    aspect-ratio: 16/10;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-photo {
    max-width: 270px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details-grid .contact-card:last-child {
    grid-column: span 2;
  }
}

@media (max-width:640px) {
  .hero {
    min-height: 720px;
    padding: 90px 16px 25px;
  }

  .hero-topline {
    font-size: .5rem;
  }

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

  .hero-eyebrow {
    font-size: .56rem;
  }

  .hero-title {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-scroll {
    display: none;
  }

  .marquee-divider {
    padding: 12px 0;
  }

  .work,
  .about,
  .contact {
    padding-left: 16px;
    padding-right: 16px;
  }

  .work {
    padding-top: 90px;
  }

  .section-title {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
  }

  .filter-bar {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .project-visual {
    aspect-ratio: 4/3;
  }

  .project-play-badge {
    opacity: 1;
    transform: translateY(0);
  }

  .about {
    padding-top: 90px;
  }

  .about-kicker {
    margin-bottom: 38px;
  }

  .about-headline {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .contact {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .contact-topline {
    display: block;
  }

  .contact-note {
    margin-top: 18px;
    text-align: left;
  }

  .contact-headline {
    margin: 55px 0 40px;
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .contact-cta-wrapper {
    margin-bottom: 62px;
  }

  .contact-cta {
    width: 100%;
    justify-content: space-between;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .contact-details-grid .contact-card:last-child {
    grid-column: auto;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .footer-mid,
  .footer-right {
    text-align: left;
  }

  .modal-wrapper {
    padding: 12px;
  }

  .modal-content {
    border-radius: 9px;
  }
}

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

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

@media (max-width: 650px) {
  .footer {
    padding-top: 50px;
  }

  .footer-main {
    min-height: auto;
    flex-direction: column;
    gap: 60px;
    padding-bottom: 65px;
  }

  .footer-brand img {
    width: 120px;
  }

  .footer-links {
    gap: 60px;
  }

  .footer-links a {
    font-size: .76rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
