:root {
  --black: #050505;
  --black-soft: #0b0b0c;
  --surface: #101012;
  --surface-light: #151517;

  --silver: #c8c9cc;
  --silver-bright: #efeff0;
  --silver-muted: #87898e;

  --gold-dark: #8f681f;
  --gold: #c6a044;
  --gold-light: #e1c46f;
  --gold-pale: #f1dda0;

  --gold-line: rgba(198, 160, 68, 0.5);
  --silver-line: rgba(200, 201, 204, 0.13);

  --font: "Manrope", Arial, sans-serif;

  --wrap: 1320px;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --section-pad: clamp(6rem, 11vw, 11rem);
  --header-height: 74px;

  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}*,
*::before,
*::after {
  box-sizing: border-box;
}html {
  scroll-behavior: smooth;
}body {
  margin: 0;
  background: var(--black);
  color: var(--silver);
  font-family: var(--font);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}body.menu-open {
  overflow: hidden;
}a {
  color: inherit;
  text-decoration: none;
}button {
  color: inherit;
  font: inherit;
}img,
svg {
  display: block;
  max-width: 100%;
}h1,
h2,
h3,
p {
  margin-top: 0;
}::selection {
  color: var(--black);
  background: var(--gold-pale);
}.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--gold-pale);
  color: var(--black);
  transform: translateY(-160%);
}.skip-link:focus {
  transform: translateY(0);
}:focus-visible {
  outline: 2px solid var(--gold-pale);
  outline-offset: 4px;
}.wrap {
  width: min(100%, var(--wrap));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}.eyebrow {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(212, 195, 156, 0.07),
    rgba(212, 195, 156, 0.025) 38%,
    transparent 72%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(170, 147, 98, 0.22);
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
  transform: translateY(-110%);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 420ms var(--ease),
    opacity 320ms ease;
}.site-header.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}.header-inner {
  width: min(100%, var(--wrap));
  min-height: var(--header-height);
  margin-inline: auto;
  padding-inline: var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}.wordmark {
  color: var(--silver-bright);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}.desktop-nav {
  display: flex;
  gap: 2.5rem;
}.desktop-nav a {
  position: relative;
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 600;
}.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms ease;
}.desktop-nav a:hover::after {
  transform: scaleX(1);
}.menu-toggle,
.mobile-menu {
  display: none;
}.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
  background: var(--black);
}.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 76%);
}.hero-contours {
  position: absolute;
  inset: -12%;
  z-index: -2;
  width: 124%;
  height: 124%;
  fill: none;
  stroke: rgba(200, 201, 204, 0.17);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}.hero-contours-one {
  animation: drift-one 25s ease-in-out infinite alternate;
}.hero-contours-two {
  opacity: 0.38;
  animation: drift-two 32s ease-in-out infinite alternate;
}.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, transparent 10%, rgba(5,5,5,0.28) 60%, rgba(5,5,5,0.9) 100%),
    linear-gradient(to bottom, rgba(5,5,5,0.06), rgba(5,5,5,0.36));
}.hero-content {
  width: min(100%, 1280px);
  padding-inline: var(--page-pad);
  text-align: center;
}.hero-label {
  margin-bottom: 1.45rem;
  color: var(--gold-light);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-up 900ms 180ms ease forwards;
}.hero h1 {
  margin-bottom: 1.6rem;
  color: var(--silver-bright);
  font-size: clamp(4rem, 10.8vw, 10.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.075em;
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 1000ms 380ms var(--ease) forwards;
}.hero-subtitle {
  margin: 0 auto;
  color: var(--silver-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.2rem);
  opacity: 0;
  animation: fade-up 900ms 620ms ease forwards;
}.hero-index {
  position: absolute;
  top: 50%;
  left: var(--page-pad);
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--silver-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-50%);
  transform-origin: left center;
}.hero-index span:first-child {
  color: var(--gold-light);
}.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--silver-muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}.scroll-line {
  position: relative;
  width: 90px;
  height: 1px;
  overflow: hidden;
  background: rgba(200, 201, 204, 0.16);
}.scroll-line::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-light));
  transform: translateX(-100%);
  animation: line-travel 2.4s ease-in-out infinite;
}.featured-work {
  padding-block: var(--section-pad);
  background: var(--black);
}.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}.section-intro h2,
.portfolio-cta h2,
.about-heading h2 {
  margin-bottom: 0;
  color: var(--silver-bright);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.065em;
}.section-copy {
  margin-bottom: 0;
  color: var(--silver-muted);
  font-size: 1.02rem;
}.project-stack {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}.project-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.5rem);
}.project-panel-large {
  width: min(100%, 1480px);
  margin-inline: auto;
  padding-inline: clamp(0rem, 2vw, 2rem);
}.project-link {
  position: relative;
  display: block;
  overflow: hidden;
}.project-visual {
  position: relative;
  min-height: clamp(520px, 65vw, 820px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 76% 20%, rgba(170,147,98,0.22), transparent 30%),
    linear-gradient(145deg, #161617, #09090a);
  transition:
    border-color 320ms ease,
    box-shadow 320ms ease;
}.project-row .project-visual {
  min-height: clamp(420px, 44vw, 650px);
}.project-visual::before {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgba(200, 201, 204, 0.09);
  transform: rotate(6deg);
  transition: transform 900ms var(--ease);
}.project-visual::after {
  position: absolute;
  inset: 18% 14%;
  content: "";
  border: 1px solid rgba(170,147,98,0.16);
  transform: rotate(-5deg);
  transition: transform 900ms var(--ease);
}.shoptalk-visual {
  background:
    linear-gradient(120deg, rgba(170,147,98,0.15), transparent 42%),
    repeating-linear-gradient(
      90deg,
      #151517 0,
      #151517 10%,
      #0d0d0f 10%,
      #0d0d0f 20%
    );
}.freelance-visual {
  background:
    radial-gradient(circle at center, rgba(212,195,156,0.08), transparent 36%),
    linear-gradient(145deg, #121214, #09090a);
}.project-logo {
  position: relative;
  z-index: 2;
  color: var(--silver-bright);
  font-size: clamp(3rem, 9vw, 9rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  text-align: center;
  transition:
    transform 900ms var(--ease),
    color 500ms ease,
    opacity 320ms ease;
}.project-row .project-logo {
  font-size: clamp(2.2rem, 5vw, 5rem);
}.shoptalk-logo {
  max-width: 80%;
}.freelance-logo {
  font-weight: 600;
}.project-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 24px 24px;
}.project-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 420ms ease,
    transform 900ms var(--ease);
}.project-preview::before,
.project-preview::after {
  position: absolute;
  content: "";
}.mfa-preview {
  background:
    linear-gradient(135deg, rgba(8, 8, 9, 0.18), rgba(8, 8, 9, 0.66)),
    radial-gradient(circle at 18% 22%, rgba(212, 195, 156, 0.3), transparent 22%),
    linear-gradient(120deg, #2a2a2b 0 18%, #121214 18% 42%, #38332a 42% 63%, #0c0c0d 63%);
}.mfa-preview::before {
  inset: 12% 10% 16% 48%;
  border: 1px solid rgba(239, 239, 240, 0.25);
  background:
    linear-gradient(rgba(239,239,240,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239,239,240,0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  transform: rotate(4deg);
}.mfa-preview::after {
  left: 9%;
  bottom: 13%;
  width: 34%;
  height: 42%;
  border: 1px solid rgba(212,195,156,0.38);
  background: linear-gradient(145deg, rgba(239,239,240,0.08), rgba(170,147,98,0.15));
  transform: rotate(-5deg);
}.shoptalk-preview {
  background:
    linear-gradient(to top, rgba(5,5,5,0.7), transparent 58%),
    linear-gradient(115deg, #111214 0 25%, #403a31 25% 47%, #171719 47% 70%, #29292b 70%);
}.shoptalk-preview::before {
  inset: 10% 12% 18% 18%;
  border: 1px solid rgba(212,195,156,0.36);
  box-shadow:
    38px 28px 0 rgba(239,239,240,0.05),
    76px 56px 0 rgba(170,147,98,0.1);
  transform: rotate(-4deg);
}.shoptalk-preview::after {
  right: 10%;
  top: 14%;
  width: 32%;
  height: 42%;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(239,239,240,0.16) 0 1px,
      transparent 1px 16px
    );
  border-top: 1px solid rgba(239,239,240,0.24);
  border-bottom: 1px solid rgba(239,239,240,0.16);
}.freelance-preview {
  background:
    radial-gradient(circle at 72% 24%, rgba(212,195,156,0.24), transparent 22%),
    linear-gradient(145deg, #262226 0 34%, #121214 34% 67%, #332d25 67%);
}.freelance-preview::before {
  inset: 14% 42% 16% 10%;
  border: 1px solid rgba(239,239,240,0.24);
  background:
    linear-gradient(140deg, rgba(239,239,240,0.06), rgba(170,147,98,0.11));
  transform: rotate(5deg);
}.freelance-preview::after {
  right: 10%;
  bottom: 14%;
  width: 36%;
  height: 48%;
  border: 1px solid rgba(212,195,156,0.34);
  background:
    radial-gradient(circle at center, rgba(239,239,240,0.08), transparent 55%);
  transform: rotate(-7deg);
}.project-overlay {
  transform: translateY(10px);
  opacity: 0.9;
  transition:
    transform 320ms var(--ease),
    opacity 320ms ease;
}.project-link:hover .project-preview,
.project-link:focus-visible .project-preview {
  opacity: 1;
  transform: scale(1);
}.project-link:hover .project-logo,
.project-link:focus-visible .project-logo {
  opacity: 0.18;
  transform: scale(0.98);
}.project-link:hover .project-overlay,
.project-link:focus-visible .project-overlay {
  transform: translateY(0);
  opacity: 1;
}.project-link:hover .project-visual,
.project-link:focus-visible .project-visual {
  border-color: rgba(228, 216, 188, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(212,195,156,0.12),
    0 20px 60px rgba(0,0,0,0.28);
}.project-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: linear-gradient(to top, rgba(5,5,5,0.94), rgba(5,5,5,0.08));
}.project-heading p {
  margin-bottom: 0.3rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}.project-heading h3 {
  margin-bottom: 0;
  color: var(--silver-bright);
  font-size: clamp(1.35rem, 2.5vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}.project-action {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}.project-link:hover .project-visual::before {
  transform: rotate(3deg) scale(1.03);
}.project-link:hover .project-visual::after {
  transform: rotate(-2deg) scale(1.04);
}.portfolio-cta {
  padding-block: var(--section-pad);
  border-top: 1px solid var(--silver-line);
  border-bottom: 1px solid var(--silver-line);
  background:
    radial-gradient(circle at 70% 40%, rgba(170,147,98,0.09), transparent 34%),
    var(--black-soft);
}.cta-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
}.cta-number,
.about-number {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}.cta-content {
  max-width: 980px;
}.soft-gold-button {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 2.5rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(212,195,156,0.48);
  color: #171513;
  background: linear-gradient(
    115deg,
    #8f7a53 0%,
    #ad996e 34%,
    #cbbd9d 67%,
    #a38e63 100%
  );
  font-size: 0.82rem;
  font-weight: 700;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}.soft-gold-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}.about-section {
  padding-block: var(--section-pad);
  background: var(--black);
}.about-layout {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}.about-copy {
  padding-top: 2.4rem;
}.about-copy > p {
  margin-bottom: 2.5rem;
  color: var(--silver);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--silver-line);
}.capability-grid span {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--silver-line);
  color: var(--silver-bright);
  font-size: 0.88rem;
  font-weight: 600;
}.site-footer {
  padding-block: 2.4rem;
  border-top: 1px solid var(--gold-line);
  background: var(--black-soft);
}.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: end;
}.footer-name {
  margin-bottom: 0.15rem;
  color: var(--silver-bright);
  font-size: 1rem;
  font-weight: 700;
}.footer-copy,
.footer-year {
  margin-bottom: 0;
  color: var(--silver-muted);
  font-size: 0.76rem;
}.footer-links {
  display: flex;
  gap: 2rem;
}.footer-links a {
  color: var(--silver-bright);
  font-size: 1.05rem;
  font-weight: 700;
}.footer-links span {
  color: var(--gold-light);
  transition: transform 200ms ease;
}.footer-links a:hover span {
  display: inline-block;
  transform: translate(3px, -3px);
}.reveal-panel {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 850ms ease,
    transform 850ms var(--ease);
}.reveal-panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}@keyframes drift-one {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}@keyframes drift-two {
  from {
    transform: translate3d(1%, -1.5%, 0) scale(1.04) rotate(0.15deg);
  }
  to {
    transform: translate3d(-1%, 1.5%, 0) scale(1) rotate(-0.15deg);
  }
}@keyframes line-travel {
  0% {
    transform: translateX(-100%);
  }
  55%,
  100% {
    transform: translateX(100%);
  }
}@media (max-width: 980px) {
  .section-intro,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .cta-number,
  .about-number {
    margin-bottom: 0.5rem;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-index {
    display: none;
  }
}@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: block;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    margin: 6px auto;
    background: var(--silver-bright);
    transition: transform 220ms ease;
  }

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

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

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: calc(var(--header-height) + 2rem) var(--page-pad) 3rem;
    background: rgba(5,5,5,0.98);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition:
      opacity 300ms ease,
      transform 300ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    color: var(--silver-bright);
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.06em;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 17vw, 6.2rem);
  }

  .hero-subtitle {
    max-width: 320px;
  }

  .scroll-cue {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .scroll-line {
    width: 55px;
  }

  .section-intro,
  .project-row {
    grid-template-columns: 1fr;
  }

  .project-panel-large {
    padding-inline: var(--page-pad);
  }

  .project-visual,
  .project-row .project-visual {
    min-height: 420px;
  }

  .project-overlay {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }

  .cursor-glow {
    display: none;
  }
}@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;
  }

  .hero-label,
  .hero h1,
  .hero-subtitle,
  .reveal-panel {
    opacity: 1;
    transform: none;
  }
}.portfolio-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(170, 147, 98, 0.22);
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(18px);
}.portfolio-header .header-inner {
  min-height: var(--header-height);
}.portfolio-hero {
  padding-block: clamp(7rem, 14vw, 13rem) clamp(5rem, 10vw, 9rem);
  border-bottom: 1px solid var(--silver-line);
}.portfolio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}.portfolio-hero h1 {
  margin: 0;
  color: var(--silver-bright);
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.08em;
}.portfolio-hero-copy {
  margin-bottom: 0;
  color: var(--silver-muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}.portfolio-featured,
.browse-brands {
  padding-block: var(--section-pad);
}.portfolio-featured {
  background: var(--black);
}.browse-brands {
  border-top: 1px solid var(--silver-line);
  background: var(--black-soft);
}.portfolio-section-heading {
  margin-bottom: clamp(3rem, 7vw, 6rem);
}.portfolio-section-heading h2 {
  max-width: 880px;
  margin: 0;
  color: var(--silver-bright);
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.06em;
}.featured-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}.featured-project {
  min-width: 0;
}.featured-project-wide {
  grid-column: 1 / -1;
}.featured-image {
  position: relative;
  min-height: clamp(360px, 38vw, 560px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  background: var(--surface);
  transition:
    border-color 300ms ease,
    transform 700ms var(--ease),
    filter 300ms ease;
}.featured-project-wide .featured-image {
  min-height: clamp(480px, 56vw, 760px);
}.featured-image::before,
.featured-image::after {
  position: absolute;
  content: "";
}.featured-image span {
  position: relative;
  z-index: 2;
  color: rgba(239, 239, 240, 0.88);
  font-size: clamp(2.2rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  text-align: center;
}.feature-one {
  background:
    radial-gradient(circle at 78% 20%, rgba(212,195,156,0.24), transparent 24%),
    linear-gradient(140deg, #161617, #09090a);
}.feature-one::before {
  inset: 12% 16% 14% 48%;
  border: 1px solid rgba(212,195,156,0.28);
  transform: rotate(4deg);
}.feature-two {
  background:
    repeating-linear-gradient(90deg, #151517 0 12%, #0d0d0f 12% 24%);
}.feature-three {
  background:
    linear-gradient(130deg, #302b24 0 30%, #111214 30% 68%, #252527 68%);
}.feature-four {
  background:
    radial-gradient(circle at 50% 42%, rgba(212,195,156,0.15), transparent 26%),
    linear-gradient(145deg, #211d20, #0c0c0d);
}.feature-five {
  background:
    linear-gradient(120deg, rgba(170,147,98,0.15), transparent 38%),
    linear-gradient(145deg, #111214, #252527);
}.feature-six {
  background:
    linear-gradient(145deg, #26221d, #0c0c0e 62%);
}.featured-meta {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.25rem;
}.featured-meta h3 {
  margin-bottom: 0.25rem;
  color: var(--silver-bright);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}.featured-meta p,
.featured-brand {
  margin: 0;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}.featured-project a:hover .featured-image {
  border-color: rgba(228,216,188,0.72);
  filter: brightness(1.07);
  transform: translateY(-3px);
}.brand-preview-list {
  border-top: 1px solid var(--gold-line);
}.brand-preview {
  padding-block: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--gold-line);
}.brand-preview-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.5rem;
}.brand-preview-heading h3 {
  margin: 0;
  color: var(--silver-bright);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}.brand-preview-heading > p {
  margin: 0;
  color: var(--silver-muted);
}.brand-index {
  margin-bottom: 0.6rem;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}.brand-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}.brand-thumb {
  position: relative;
  min-height: clamp(220px, 24vw, 360px);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(170,147,98,0.35);
  background:
    radial-gradient(circle at 70% 22%, rgba(212,195,156,0.12), transparent 24%),
    linear-gradient(145deg, #151517, #0b0b0c);
  transition:
    border-color 260ms ease,
    transform 500ms var(--ease),
    filter 260ms ease;
}.brand-thumb:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(170,147,98,0.13), transparent 44%),
    repeating-linear-gradient(90deg, #141416 0 15%, #0c0c0e 15% 30%);
}.brand-thumb:nth-child(3) {
  background:
    radial-gradient(circle at center, rgba(200,201,204,0.08), transparent 35%),
    linear-gradient(145deg, #1d1a1d, #0b0b0c);
}.brand-thumb span {
  color: var(--silver-bright);
  font-size: clamp(1.3rem, 2.6vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.05em;
}.brand-thumb:hover {
  border-color: rgba(228,216,188,0.7);
  filter: brightness(1.08);
  transform: translateY(-3px);
}.brand-view-button {
  display: inline-flex;
  margin-top: 2rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(212,195,156,0.42);
  color: var(--silver-bright);
  font-size: 0.82rem;
  font-weight: 700;
  background: rgba(170,147,98,0.06);
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}.brand-view-button:hover {
  border-color: rgba(228,216,188,0.72);
  color: var(--gold-pale);
  background: rgba(170,147,98,0.12);
}@media (max-width: 900px) {
  .portfolio-hero-grid,
  .brand-preview-heading {
    grid-template-columns: 1fr;
  }

  .featured-editorial-grid,
  .brand-preview-grid {
    grid-template-columns: 1fr;
  }

  .featured-project-wide {
    grid-column: auto;
  }

  .featured-image,
  .featured-project-wide .featured-image,
  .brand-thumb {
    min-height: 360px;
  }

  .featured-meta {
    flex-direction: column;
    gap: 0.6rem;
  }
}h1,
h2,
h3,
.hero h1,
.portfolio-hero h1,
.portfolio-section-heading h2,
.brand-preview-heading h3,
.section-intro h2,
.portfolio-cta h2,
.about-heading h2,
.project-heading h3,
.featured-meta h3 {
  letter-spacing: 0.02em;
}.brand-preview-aob .brand-preview-heading {
  grid-template-columns: 1fr;
}.brand-preview-aob .brand-preview-heading > div {
  width: 100%;
}.brand-preview-aob .brand-preview-heading h3 {
  max-width: none;
  width: 100%;
  font-size: clamp(2.2rem, 5.15vw, 5rem);
  line-height: 1.06;
  text-wrap: balance;
}.brand-preview-aob .brand-preview-heading > p {
  max-width: 680px;
}.portfolio-page,
body {
  position: relative;
}.portfolio-page main,
.portfolio-page .portfolio-header,
.portfolio-page .site-footer,
body > main,
body > .site-header,
body > .site-footer {
  position: relative;
  z-index: 1;
}.ambient-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.55;
}.ambient-background-home {
  top: 100svh;
}.ambient-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  will-change: transform;
}.ambient-shape-one {
  top: 8%;
  left: -12%;
  width: min(48vw, 720px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(212, 195, 156, 0.24),
    rgba(170, 147, 98, 0.07) 46%,
    transparent 72%
  );
  animation: ambient-float-one 28s ease-in-out infinite alternate;
}.ambient-shape-two {
  right: -16%;
  top: 48%;
  width: min(54vw, 820px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle,
    rgba(200, 201, 204, 0.11),
    rgba(170, 147, 98, 0.045) 48%,
    transparent 72%
  );
  animation: ambient-float-two 34s ease-in-out infinite alternate;
}.ambient-lines {
  position: absolute;
  inset: -12%;
  width: 124%;
  height: 124%;
  fill: none;
  stroke: rgba(200, 201, 204, 0.055);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  animation: ambient-line-drift 38s ease-in-out infinite alternate;
}@keyframes ambient-float-one {
  from {
    transform: translate3d(-2%, -2%, 0) scale(0.96);
  }
  to {
    transform: translate3d(12%, 9%, 0) scale(1.08);
  }
}@keyframes ambient-float-two {
  from {
    transform: translate3d(2%, 4%, 0) scale(1.03);
  }
  to {
    transform: translate3d(-12%, -8%, 0) scale(0.94);
  }
}@keyframes ambient-line-drift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.035);
  }
}@media (max-width: 900px) {
  .brand-preview-aob .brand-preview-heading h3 {
    font-size: clamp(2rem, 9vw, 4rem);
  }

  .ambient-shape {
    opacity: 0.08;
    filter: blur(70px);
  }

  .ambient-lines {
    opacity: 0.7;
  }
}@media (prefers-reduced-motion: reduce) {
  .ambient-shape,
  .ambient-lines {
    animation: none !important;
  }
}.brand-hero{padding-block:clamp(7rem,13vw,12rem) clamp(5rem,9vw,8rem);border-bottom:1px solid var(--silver-line);background:var(--black)}.brand-hero-grid{display:grid;grid-template-columns:minmax(0,1.25fr) minmax(320px,.65fr);gap:clamp(3rem,8vw,8rem);align-items:end}.brand-hero h1{margin:0;color:var(--silver-bright);font-size:clamp(4rem,9vw,8rem);font-weight:600;line-height:.95;letter-spacing:.02em}.brand-logo{max-width:min(420px,70%);max-height:180px;object-fit:contain;margin-bottom:2rem}.brand-summary p{font-size:1.05rem}.brand-tags{display:flex;flex-wrap:wrap;gap:.75rem;margin-top:2rem}.brand-tags a{padding:.75rem 1rem;border:1px solid rgba(212,195,156,.45);color:var(--silver-bright);font-size:.82rem;font-weight:700;background:rgba(170,147,98,.08)}.brand-category{padding-block:var(--section-pad);border-bottom:1px solid var(--silver-line);background:rgba(5,5,5,.98)}.brand-category.alt{background:rgba(11,11,12,.98)}.category-heading{display:grid;grid-template-columns:1fr minmax(280px,.48fr);gap:clamp(2rem,7vw,7rem);align-items:end;margin-bottom:clamp(3rem,7vw,6rem)}.category-heading h2{margin:0;color:var(--silver-bright);font-size:clamp(3rem,7vw,6rem);font-weight:600;line-height:1;letter-spacing:.02em}.category-heading p{margin:0;color:var(--silver-muted)}.cat-no{color:var(--gold-light);font-size:.74rem;font-weight:700;letter-spacing:.18em}.asset-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1rem,2vw,1.8rem)}.asset-grid.two{grid-template-columns:repeat(2,minmax(0,1fr))}.asset-grid.five{grid-template-columns:repeat(3,minmax(0,1fr))}.asset{width:100%;padding:0;border:1px solid var(--gold-line);background:#111;overflow:hidden;cursor:zoom-in}.asset img,.asset video{display:block;width:100%;height:100%;object-fit:contain}.asset.square{aspect-ratio:1}.asset.landscape{aspect-ratio:16/9}.asset.portrait{aspect-ratio:8.5/11}.asset.long{max-height:780px}.asset:hover{border-color:rgba(228,216,188,.75)}.magazine-layout{display:grid;grid-template-columns:minmax(320px,.62fr) minmax(0,1.38fr);gap:2rem;align-items:stretch}.magazine-cover{height:100%;min-height:720px}.magazine-cover img{object-fit:cover}.magazine-inside{display:grid;grid-template-columns:repeat(2,1fr);gap:1.3rem}.magazine-inside .asset{aspect-ratio:1.54}.postcard-list{display:grid;gap:4rem}.postcard-project{display:grid;grid-template-columns:130px 1fr;gap:2.5rem}.postcard-project h3{color:var(--silver-bright);font-size:1.5rem}.postcard-pair{display:grid;gap:1px;padding:1px;background:var(--gold-line)}.postcard-pair .asset{aspect-ratio:630/414;border:0}.side-label{position:absolute;margin:.8rem;padding:.35rem .55rem;background:rgba(5,5,5,.8);z-index:2;font-size:.65rem;text-transform:uppercase}.asset-wrap{position:relative}.video-card{border:1px solid var(--gold-line);background:#09090a}.video-card video{width:100%;display:block;aspect-ratio:16/9;object-fit:cover}.video-meta{padding:1rem;color:var(--silver-bright);font-weight:600}.client-heading{display:flex;align-items:center;gap:2rem;margin-bottom:3rem}.client-heading img{max-width:260px;max-height:100px;object-fit:contain}.brand-end{padding:7rem 0;text-align:center}.brand-end h2{color:var(--silver-bright);font-size:clamp(2.5rem,5vw,5rem)}.lightbox{width:min(94vw,1500px);max-width:none;max-height:94vh;padding:3.5rem 1rem 1rem;border:1px solid var(--gold-line);background:rgba(5,5,5,.98)}.lightbox::backdrop{background:rgba(0,0,0,.9)}.lightbox img{display:block;max-width:100%;max-height:82vh;margin:auto}.lightbox-close{position:absolute;top:1rem;right:1rem;padding:.6rem .85rem;border:1px solid var(--gold-line);background:#09090a;color:#eee}@media(max-width:900px){.brand-hero-grid,.category-heading,.magazine-layout{grid-template-columns:1fr}.magazine-cover{min-height:auto}.asset-grid,.asset-grid.two,.asset-grid.five,.magazine-inside{grid-template-columns:1fr}.postcard-project{grid-template-columns:1fr}}.section-intro {
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: start;
}.section-intro > div,
.section-intro h2 {
  width: 100%;
  max-width: none;
}.section-copy {
  max-width: 760px;
}.brand-preview-heading,
.brand-preview-aob .brand-preview-heading {
  display: block;
  width: 100%;
}.brand-preview-heading > div,
.brand-preview-aob .brand-preview-heading > div {
  width: 100%;
}.brand-preview-heading h3,
.brand-preview-aob .brand-preview-heading h3 {
  width: 100%;
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.06;
  text-wrap: balance;
}.brand-preview-heading > p,
.brand-preview-aob .brand-preview-heading > p {
  width: 100%;
  max-width: 760px;
}.brand-thumb {
  padding: 0;
  background: #111113;
}.brand-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 650ms var(--ease),
    filter 260ms ease;
}.brand-thumb:hover img {
  transform: scale(1.018);
  filter: brightness(1.05);
}.brand-thumb.logo-thumb {
  padding: clamp(1.5rem, 4vw, 4rem);
  background:
    radial-gradient(circle at center, rgba(225,196,111,0.09), transparent 48%),
    #101012;
}.brand-thumb.logo-thumb img {
  object-fit: contain;
}.brand-card-logo {
  max-width: min(58%, 560px);
  max-height: 46%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.26));
}.soft-gold-button {
  background: linear-gradient(
    115deg,
    #9b7428 0%,
    #c19a43 34%,
    #e1c46f 67%,
    #ae8431 100%
  );
  border-color: rgba(225,196,111,0.58);
}.video-card {
  position: relative;
}.video-card video {
  background: #09090a;
}.video-card.video-error::after {
  position: absolute;
  inset: 0 0 3.6rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  content: "Video could not load. Confirm the videos folder is inside the website folder.";
  color: var(--silver);
  background: rgba(5,5,5,0.84);
  text-align: center;
  font-size: 0.85rem;
}@media (max-width: 760px) {
  .brand-preview-heading h3,
  .brand-preview-aob .brand-preview-heading h3 {
    font-size: clamp(2rem, 10vw, 3.8rem);
  }
}.brand-hero-grid,
.stacked-brand-hero .brand-hero-grid {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 1.35rem !important;
  align-items: start !important;
}.brand-hero-grid > div:first-child { width: 100%; }.brand-summary {
  width: 100%;
  max-width: 840px;
  padding-top: .35rem;
}.brand-summary p { margin: 0; }.brand-tags { margin-top: 1.25rem; }.brand-logo {
  width: min(620px, 78vw);
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 2rem;
}.brand-preview-grid { align-items: stretch; }.brand-thumb.preview-frame {
  min-height: 0;
  aspect-ratio: 16 / 10;
  padding: 0;
  background:
    radial-gradient(circle at center, rgba(225,196,111,.07), transparent 55%),
    #101012;
}.brand-thumb.preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}.brand-thumb.contain-thumb img,
.brand-thumb.logo-thumb img,
.brand-thumb.paper-thumb img,
.brand-thumb.aob-thumb img,
.brand-thumb.wide-thumb img {
  object-fit: contain;
}.brand-thumb.logo-thumb,
.brand-thumb.logo-art-thumb {
  padding: clamp(.55rem, 1.6vw, 1.3rem) !important;
}.brand-thumb.large-logo-thumb img {
  width: 92%;
  height: 92%;
  max-width: none;
  max-height: none;
}.brand-thumb.paper-thumb { padding: clamp(.45rem, 1.2vw, 1rem); }.brand-thumb.email-thumb img {
  object-position: center top;
}.brand-thumb:hover img { transform: scale(1.012); }.magazine-layout { align-items: stretch !important; }.magazine-cover {
  height: auto !important;
  min-height: 0 !important;
  align-self: stretch;
}.magazine-cover img,
.contain-asset img { object-fit: contain !important; }.magazine-inside { height: 100%; }.magazine-inside .asset { min-height: 0; }.asset.natural-asset {
  aspect-ratio: auto !important;
  height: auto;
  align-self: start;
  background: #101012;
}.asset.natural-asset img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}.mixed-aspect-grid,
.natural-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start;
}.email-showcase-grid {
  display: block;
  max-width: 760px;
  margin-inline: auto;
}.email-asset img { width: 100%; height: auto; }.asset.logo-asset { padding: clamp(1rem, 3vw, 2.5rem); background:#101012; }.asset.logo-asset img { object-fit: contain !important; }.shoptalk-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  align-items: start;
}.shoptalk-grid .wide-social { grid-column: 1 / -1; aspect-ratio: 1200 / 628; }.shoptalk-grid .wide-social img { object-fit: contain; }.natural-project-grid .asset img { background:#101012; }@media (max-width: 900px) {
  .mixed-aspect-grid,
  .natural-project-grid,
  .shoptalk-grid { grid-template-columns: 1fr !important; }
  .shoptalk-grid .wide-social { grid-column: auto; }
  .brand-thumb.preview-frame { aspect-ratio: 16 / 10; }
}.home-page .site-header {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}.home-page .brand-card-logo {
  width: min(72%, 760px);
  max-width: 72%;
  max-height: 58%;
  object-fit: contain;
}.home-page .project-row .brand-card-logo {
  width: 76%;
  max-width: 76%;
  max-height: 48%;
}.home-page .project-overlay {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: start;
  gap: 0.85rem;
}.home-page .project-heading {
  width: 100%;
}.home-page .project-heading h3 {
  max-width: none;
  white-space: normal;
  text-wrap: balance;
  line-height: 1.08;
}.home-page .project-action {
  width: 100%;
  justify-content: flex-start;
}.home-page .about-layout {
  grid-template-columns: 90px minmax(0, 1.2fr) minmax(320px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
}.home-page .about-heading h2 {
  max-width: 760px;
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  text-wrap: balance;
}.home-page .about-copy {
  padding-top: 2.4rem;
}.portfolio-page .brand-preview-grid {
  align-items: stretch;
}.portfolio-page .brand-thumb.preview-frame {
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: 0;
  background: #101012;
}.portfolio-page .brand-thumb.fill-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
}.portfolio-page .brand-thumb.paper-thumb img {
  object-fit: cover !important;
  object-position: center top;
}.portfolio-page .brand-thumb.portfolio-logo-thumb {
  padding: clamp(0.55rem, 1.2vw, 1rem);
}.portfolio-page .brand-thumb.portfolio-logo-thumb img {
  width: 92%;
  height: 86%;
  margin: auto;
  object-fit: contain !important;
  transform: scale(1.12);
  transform-origin: center;
}.portfolio-page .brand-thumb.media-contain-thumb {
  padding: clamp(0.35rem, 0.9vw, 0.75rem);
  background: #111113;
}.portfolio-page .brand-thumb.media-contain-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center;
}.portfolio-page .brand-thumb.email-thumb img {
  object-position: center top;
}.brand-page .brand-logo,
.stacked-brand-hero .brand-logo {
  width: min(620px, 85%);
  max-width: 85%;
  max-height: 220px;
  object-fit: contain;
}.asset.logo-asset,
.asset.expanded-logo-asset {
  padding: clamp(0.35rem, 1vw, 0.8rem) !important;
  background: #101012;
}.asset.expanded-logo-asset img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transform: scale(1.22);
  transform-origin: center;
}#perpetual-news .expanded-logo-asset img,
#thedocgreen .expanded-logo-asset img {
  transform: scale(1.38);
}.winger-logo-grid .expanded-logo-asset {
  min-height: 280px;
}.winger-logo-grid .expanded-logo-asset img {
  object-fit: contain !important;
  transform: scale(1.15);
}.shoptalk-grid .wide-social img {
  object-fit: contain !important;
  background: #101012;
}.mixed-aspect-grid {
  align-items: start;
}.mixed-aspect-grid .natural-asset {
  min-height: 320px;
  height: auto;
}.mixed-aspect-grid .natural-asset img {
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain !important;
}.email-showcase-grid .email-asset {
  height: auto;
  max-width: 960px;
  margin-inline: auto;
}.email-showcase-grid .email-asset img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain !important;
}#additional-projects .natural-asset {
  height: auto;
  min-height: 0;
}#additional-projects .natural-asset img {
  width: 100%;
  height: auto;
  object-fit: contain !important;
}@media (max-width: 980px) {
  .home-page .about-layout {
    grid-template-columns: 1fr;
  }

  .home-page .about-number,
  .home-page .about-heading,
  .home-page .about-copy {
    grid-column: 1;
  }

  .home-page .about-copy {
    padding-top: 0;
  }

  .portfolio-page .brand-thumb.preview-frame {
    aspect-ratio: 16 / 11;
  }
}@media (max-width: 700px) {
  .home-page .brand-card-logo,
  .home-page .project-row .brand-card-logo {
    width: 82%;
    max-width: 82%;
    max-height: 50%;
  }

  .home-page .project-overlay {
    gap: 0.55rem;
  }

  .portfolio-page .brand-thumb.preview-frame {
    aspect-ratio: 4 / 3;
  }

  .portfolio-page .brand-thumb.portfolio-logo-thumb img {
    transform: scale(1.04);
  }
}.portfolio-page .brand-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}.portfolio-page .brand-thumb.preview-frame {
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: clamp(.35rem, .8vw, .7rem);
  background: #101012;
  overflow: hidden;
}.portfolio-page .brand-thumb.preview-frame img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: contain !important;
  object-position: center;
  transform: none !important;
  filter: none;
}.portfolio-page .portfolio-cover-art img {
  object-fit: contain !important;
  object-position: center;
}.portfolio-page .portfolio-logo-card {
  padding: clamp(.4rem, .9vw, .8rem);
  background:
    radial-gradient(circle at center, rgba(225,196,111,.07), transparent 55%),
    #0f0f11;
}.portfolio-page .portfolio-logo-card img {
  max-width: 96%;
  max-height: 94%;
}.portfolio-page .portfolio-email-art img {
  object-position: center top;
}#magazine .magazine-layout {
  display: grid;
  grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
  gap: 2rem;
  align-items: stretch;
}#magazine .magazine-cover {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
}#magazine .magazine-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center top;
}#magazine .magazine-inside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.3rem;
  height: 100%;
}#magazine .magazine-inside .asset {
  aspect-ratio: 1900 / 1231;
  min-height: 0;
}.freelance-logo-project {
  width: 100%;
  aspect-ratio: 1;
  padding: clamp(.4rem, 1vw, .85rem);
  border: 1px solid var(--gold-line);
  background: #101012;
  overflow: hidden;
}.freelance-logo-project img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  transform: none !important;
}.winger-logo-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}.winger-logo-wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 5;
  padding: clamp(1rem, 3vw, 2.8rem);
  background: #101012;
}.winger-logo-wide img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
}.winger-logo-square {
  aspect-ratio: 1;
  padding: 0;
}.winger-logo-square img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}.winger-magazine-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}.winger-magazine-wide {
  grid-column: 1 / -1;
  aspect-ratio: 1440 / 936;
}.winger-magazine-wide img {
  object-fit: contain !important;
}.winger-magazine-portrait {
  aspect-ratio: 1700 / 2405;
}.winger-magazine-portrait img {
  object-fit: contain !important;
}.winger-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: start;
}.winger-social-wide {
  grid-column: 1 / -1;
  aspect-ratio: 1200 / 916;
}.winger-social-wide img {
  object-fit: contain !important;
}.winger-social-square {
  aspect-ratio: 1;
}.winger-social-square img {
  object-fit: contain !important;
}.shoptalk-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
}.shoptalk-social-grid .wide-social {
  grid-column: 1 / -1;
  aspect-ratio: 1200 / 628;
}.shoptalk-social-grid .wide-social img {
  object-fit: contain !important;
}.shoptalk-social-grid .square {
  aspect-ratio: 1;
}.shoptalk-social-grid .square img {
  object-fit: contain !important;
}.asset.expanded-logo-asset img,
#perpetual-news .expanded-logo-asset img,
#thedocgreen .expanded-logo-asset img,
.winger-logo-grid .expanded-logo-asset img {
  transform: none !important;
}@media (max-width: 900px) {
  .portfolio-page .brand-preview-grid,
  .winger-social-grid,
  .shoptalk-social-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page .brand-thumb.preview-frame {
    aspect-ratio: 4 / 3;
  }

  #magazine .magazine-layout,
  .winger-logo-layout,
  .winger-magazine-grid {
    grid-template-columns: 1fr;
  }

  .winger-logo-wide,
  .winger-magazine-wide,
  .winger-social-wide,
  .shoptalk-social-grid .wide-social {
    grid-column: auto;
  }

  #magazine .magazine-cover {
    aspect-ratio: 1900 / 2459;
  }
}.portfolio-page,
.portfolio-page main,
.portfolio-page .browse-brands,
.portfolio-page .wrap,
.portfolio-page .brand-preview,
.portfolio-page .brand-preview-heading,
.portfolio-page .brand-preview-grid {
  min-width: 0;
  max-width: 100%;
}.portfolio-page {
  overflow-x: hidden;
}.portfolio-page .brand-preview-heading h3,
.portfolio-page .brand-preview-aob .brand-preview-heading h3 {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 4.8vw, 4.9rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: wrap;
}.portfolio-page .brand-preview-heading > p {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 0;
  padding-top: 0.15rem;
}.portfolio-page .brand-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.8rem);
  align-items: stretch;
}.portfolio-page .brand-thumb.preview-backdrop {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 10;
  min-height: 0;
  padding: clamp(0.65rem, 1.4vw, 1.25rem);
  overflow: hidden;
  background: #0f0f11;
}.portfolio-page .brand-thumb.preview-backdrop::before {
  position: absolute;
  inset: -8%;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(5,5,5,.38), rgba(5,5,5,.58)),
    var(--preview-image);
  background-position: center;
  background-size: cover;
  filter: blur(20px) saturate(.8);
  opacity: .42;
  transform: scale(1.08);
}.portfolio-page .brand-thumb.preview-backdrop::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(10,10,12,.22);
}.portfolio-page .brand-thumb.preview-backdrop img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
  filter: none !important;
}.portfolio-page .portfolio-logo-card {
  padding: clamp(1.2rem, 3vw, 2.8rem) !important;
}.portfolio-page .portfolio-logo-card img {
  max-width: 90% !important;
  max-height: 86% !important;
}.portfolio-page .portfolio-cover-art {
  padding: clamp(.55rem, 1vw, .9rem) !important;
}.portfolio-page .portfolio-cover-art img {
  max-height: 100% !important;
}.portfolio-page .brand-view-button {
  clear: both;
  margin-top: 2rem;
}.portfolio-page .brand-thumb img,
.portfolio-page .brand-thumb:hover img,
.portfolio-page .brand-thumb.fill-thumb img,
.portfolio-page .brand-thumb.paper-thumb img,
.portfolio-page .brand-thumb.media-contain-thumb img,
.portfolio-page .brand-thumb.portfolio-logo-thumb img {
  transform: none !important;
  object-fit: contain !important;
}.freelance-logo-project {
  padding: clamp(1rem, 2.5vw, 2.2rem) !important;
}.freelance-logo-project img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  transform: none !important;
}.winger-logo-wide img {
  width: auto !important;
  height: auto !important;
  max-width: 94% !important;
  max-height: 88% !important;
  margin: auto;
  object-fit: contain !important;
}@media (max-width: 900px) {
  .portfolio-page .brand-preview-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-page .brand-thumb.preview-backdrop {
    aspect-ratio: 4 / 3;
  }

  .portfolio-page .brand-preview-heading h3,
  .portfolio-page .brand-preview-aob .brand-preview-heading h3 {
    font-size: clamp(2.3rem, 9vw, 4rem);
  }
}.portfolio-page .brand-thumb.preview-backdrop::before,
.portfolio-page .brand-thumb.preview-backdrop::after {
  display: none !important;
}.portfolio-page .brand-thumb.preview-backdrop:not(.portfolio-logo-card) {
  padding: 0 !important;
  background: #101012;
}.portfolio-page .brand-thumb.preview-backdrop:not(.portfolio-logo-card) img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
}.portfolio-page .brand-thumb.portfolio-logo-card {
  padding: clamp(1rem, 2.6vw, 2.4rem) !important;
  background:
    radial-gradient(circle at center, rgba(225,196,111,.06), transparent 55%),
    #101012;
}.portfolio-page .brand-thumb.portfolio-logo-card img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
}.portfolio-page .portfolio-art img,
.portfolio-page .portfolio-cover-art img,
.portfolio-page .portfolio-email-art img,
.portfolio-page .media-contain-thumb img,
.portfolio-page .aob-thumb img,
.portfolio-page .email-thumb img,
.portfolio-page .wide-thumb img {
  object-fit: cover !important;
  object-position: center center !important;
}.portfolio-page .brand-thumb.preview-frame,
.portfolio-page .brand-thumb.preview-backdrop {
  aspect-ratio: 16 / 10;
  min-height: 0;
  overflow: hidden;
}#shoptalk-2020 .sm5-sm6-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:clamp(1rem,2vw,1.8rem);
}#shoptalk-2020 .project-medium-wide{
  aspect-ratio:11/8.5;
}#shoptalk-2020 .project-medium-wide img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}#shoptalk-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:clamp(1rem,2vw,1.8rem);
}#shoptalk-gallery .sm1{grid-column:1 / span 3;}#shoptalk-gallery .sm2{grid-column:1;grid-row:2;}#shoptalk-gallery .sm3{grid-column:2;grid-row:2;}#shoptalk-gallery .sm4{grid-column:3;grid-row:2;}#shoptalk-gallery .sm5{grid-column:1;grid-row:3;}#shoptalk-gallery .sm6{
  grid-column:2 / span 2;
  grid-row:3;
  aspect-ratio:11/8.5;
}.shoptalk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  grid-auto-flow: row !important;
  gap: clamp(1rem, 2vw, 1.8rem) !important;
  align-items: stretch !important;
}.shoptalk-grid .asset {
  min-width: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
}.shoptalk-grid .asset img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}.shoptalk-grid .shoptalk-sm-1 {
  grid-column: 1 / -1 !important;
  grid-row: 1 !important;
  aspect-ratio: 16 / 9 !important;
}.shoptalk-grid .shoptalk-sm-2 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  aspect-ratio: 1 !important;
}.shoptalk-grid .shoptalk-sm-3 {
  grid-column: 2 !important;
  grid-row: 2 !important;
  aspect-ratio: 1 !important;
}.shoptalk-grid .shoptalk-sm-4 {
  grid-column: 3 !important;
  grid-row: 2 !important;
  aspect-ratio: 1 !important;
}.shoptalk-grid .shoptalk-sm-5 {
  grid-column: 1 !important;
  grid-row: 3 !important;
  aspect-ratio: 1 !important;
}.shoptalk-grid .shoptalk-sm-6 {
  grid-column: 2 / 4 !important;
  grid-row: 3 !important;
  aspect-ratio: 11 / 8.5 !important;
}.shoptalk-grid .shoptalk-sm-6.wide-social,
.shoptalk-grid .shoptalk-sm-6.medium-wide {
  grid-column: 2 / 4 !important;
}@media (max-width: 760px) {
  .shoptalk-grid {
    grid-template-columns: 1fr !important;
  }

  .shoptalk-grid .shoptalk-sm-1,
  .shoptalk-grid .shoptalk-sm-2,
  .shoptalk-grid .shoptalk-sm-3,
  .shoptalk-grid .shoptalk-sm-4,
  .shoptalk-grid .shoptalk-sm-5,
  .shoptalk-grid .shoptalk-sm-6 {
    grid-column: 1 !important;
    grid-row: auto !important;
  }

  .shoptalk-grid .shoptalk-sm-1,
  .shoptalk-grid .shoptalk-sm-6 {
    aspect-ratio: 16 / 9 !important;
  }
}
