:root {
  --background: #11110f;
  --surface: #1a1a17;
  --surface-light: #24241f;
  --text: #f0eee7;
  --muted: #a5a198;
  --line: rgba(240, 238, 231, 0.16);
  --accent: #ff5c35;
  --accent-soft: #f4b860;
  --page-padding: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%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)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem var(--page-padding);
}

.logo {
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.08em;
}

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

.site-nav {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3rem);
}

.site-nav a,
.social-links a {
  position: relative;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav a::after,
.social-links a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.social-links a:hover,
.social-links a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.social-links a:hover::after,
.social-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  padding: 8rem var(--page-padding) 3rem;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 17%;
  right: -8%;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  filter: blur(150px);
  opacity: 0.1;
}

.eyebrow {
  margin: 0;
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 2.4rem 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.72;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 em {
  display: block;
  word-spacing: 0.28em;
}

.hero h1 em {
  margin-left: clamp(1rem, 13vw, 12rem);
  color: transparent;
  font-size: 0.68em;
  font-style: italic;
  -webkit-text-stroke: 1px rgba(240, 238, 231, 0.72);
}

.hero-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: auto;
}

.hero-footer > p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.round-link {
  display: inline-flex;
  width: 6.5rem;
  height: 6.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.round-link svg {
  width: 0.8rem;
  fill: currentColor;
}

.round-link:hover,
.round-link:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(-8deg);
}

.hero-orbit {
  position: absolute;
  top: 13%;
  right: 7%;
  z-index: -1;
  width: clamp(12rem, 25vw, 23rem);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: orbit 18s linear infinite;
}

.hero-orbit::before,
.hero-orbit::after {
  position: absolute;
  inset: 17%;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.hero-orbit::after {
  inset: 38%;
}

.hero-orbit span {
  position: absolute;
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
}

.hero-orbit span:nth-child(1) {
  top: 8%;
  left: 24%;
}

.hero-orbit span:nth-child(2) {
  right: 14%;
  bottom: 18%;
  background: var(--accent-soft);
}

.hero-orbit span:nth-child(3) {
  bottom: 22%;
  left: 27%;
  width: 0.3rem;
  background: var(--text);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) var(--page-padding);
}

.section-heading {
  display: grid;
  grid-template-columns: 3rem minmax(15rem, 1fr) minmax(12rem, 24rem);
  align-items: end;
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-number {
  margin: 0;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
}

.section h2,
.contact-section h2 {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}

.section-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.reel-section {
  background: #151512;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #050505;
  overflow: hidden;
}

.video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  padding: 0.55rem 0.7rem;
  background: rgba(17, 17, 15, 0.85);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 5rem) clamp(1rem, 3vw, 2rem);
}

.project-card:nth-child(even) {
  margin-top: clamp(2rem, 8vw, 7rem);
}

.project-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface-light);
  overflow: hidden;
}

.project-visual img,
.project-visual video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  content: "";
}

.shape {
  position: absolute;
  display: block;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0, 1);
}

.project-card:hover .shape-a {
  transform: translate3d(1rem, -0.7rem, 0) rotate(7deg);
}

.project-card:hover .shape-b {
  transform: translate3d(-0.8rem, 1rem, 0) rotate(-6deg);
}

.project-one .project-visual {
  background: #d95d39;
}

.project-one .shape-a {
  top: 14%;
  left: 20%;
  width: 45%;
  height: 68%;
  border-radius: 45% 55% 42% 58%;
  background: #171713;
  transform: rotate(-9deg);
}

.project-one .shape-b {
  right: 10%;
  bottom: 8%;
  width: 38%;
  aspect-ratio: 1;
  border: 2px solid #f4b860;
  border-radius: 50%;
}

.project-two .project-visual {
  background: #2b423c;
}

.project-two .shape-a {
  top: -5%;
  left: 12%;
  width: 47%;
  height: 115%;
  background: #c9ded7;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.project-two .shape-b {
  top: 25%;
  right: 16%;
  width: 30%;
  aspect-ratio: 1;
  border: 1.5rem solid #e49d52;
  border-radius: 50%;
}

.project-three .project-visual {
  background: #d9ceb8;
}

.project-three .shape-a {
  top: 12%;
  right: 12%;
  width: 55%;
  height: 70%;
  background: #272723;
  clip-path: polygon(30% 0, 100% 10%, 73% 100%, 0 78%);
}

.project-three .shape-b {
  bottom: 13%;
  left: 12%;
  width: 31%;
  aspect-ratio: 1;
  border: 2px solid #ff5c35;
  transform: rotate(18deg);
}

.project-four .project-visual {
  background: #313044;
}

.project-four .shape-a {
  top: 13%;
  left: 12%;
  width: 64%;
  height: 64%;
  border-radius: 50%;
  background: #ee6f57;
}

.project-four .shape-b {
  right: 10%;
  bottom: 8%;
  width: 42%;
  height: 57%;
  background: #ebe6dc;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.project-info {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
}

.project-info h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.project-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: 3rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.about-label {
  display: flex;
  gap: 1.25rem;
}

.about-copy h2 em,
.contact-section h2 em {
  color: var(--accent);
  font-style: normal;
}

.about-lead {
  max-width: 54rem;
  margin: 3rem 0;
  font-size: clamp(1.35rem, 3vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.28;
}

.about-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 7vw, 7rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-details p {
  margin: 0;
  color: var(--muted);
}

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

.about-details li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-section {
  min-height: 92svh;
  padding: clamp(6rem, 13vw, 11rem) var(--page-padding) 2rem;
  background: #e8e2d7;
  color: #151512;
}

.contact-section .eyebrow {
  color: #8a3e28;
}

.contact-section h2 {
  margin: 2rem 0 clamp(3rem, 8vw, 7rem);
  font-size: clamp(4rem, 11vw, 10rem);
}

.contact-email {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(21, 21, 18, 0.35);
  border-bottom: 1px solid rgba(21, 21, 18, 0.35);
  font-size: clamp(1.1rem, 3vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-email svg {
  width: clamp(1.5rem, 3vw, 2.5rem);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.contact-email:hover svg,
.contact-email:focus-visible svg {
  transform: translate(0.35rem, -0.35rem);
}

.contact-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 9vw, 8rem);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.social-links a {
  color: #49463f;
}

.contact-footer p {
  margin: 0;
  color: #6a665e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

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

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

@media (max-width: 800px) {
  .site-header {
    padding-top: 1.25rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    place-content: center;
    gap: 0.35rem;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform 200ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(0.2rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-0.2rem) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(17, 17, 15, 0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    color: var(--text);
    font-family: var(--display);
    font-size: 2.4rem;
    letter-spacing: -0.04em;
  }

  .hero {
    min-height: 48rem;
  }

  .hero h1 {
    margin-top: 4rem;
  }

  .hero h1 em {
    margin-top: 0.3em;
    margin-left: 0;
  }

  .hero-orbit {
    top: 12%;
    right: -12%;
  }

  .section-heading {
    grid-template-columns: 2rem 1fr;
  }

  .section-heading .section-note {
    grid-column: 2;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-label {
    margin-bottom: -1rem;
  }
}

@media (max-width: 600px) {
  .hero-footer {
    align-items: center;
  }

  .round-link {
    width: 5rem;
    height: 5rem;
  }

  .round-link span {
    display: none;
  }

  .round-link svg {
    width: 1rem;
  }

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

  .project-card:nth-child(even) {
    margin-top: 0;
  }

  .project-info {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

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

  .contact-email {
    overflow-wrap: anywhere;
  }

  .contact-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* YouTube project embeds */
.project-video{aspect-ratio:16/9;background:#050505}.project-video iframe{display:block;width:100%;height:100%;border:0}.project-video::after{pointer-events:none}.youtube-cta{display:flex;justify-content:center;margin-top:clamp(3rem,7vw,6rem)}.youtube-button{display:inline-flex;align-items:center;justify-content:center;min-height:3.4rem;padding:.9rem 1.4rem;border:1px solid var(--line);font-size:.72rem;font-weight:800;letter-spacing:.12em;text-transform:uppercase;transition:background-color 180ms ease,border-color 180ms ease,color 180ms ease}.youtube-button:hover,.youtube-button:focus-visible{border-color:var(--accent);background:var(--accent);color:var(--text)}
