:root {
  --off-black: #1e2428;
  --near-black: #171717;
  --off-white: #f7f6f4;
  --muted: #929292;
  --black: #010101;
  --green: #20ff1c;
  --outer-pad: 22px;
  --content-width: 1468px;
  --narrow-width: 1304px;
}

@font-face {
  font-family: "PP Right Grotesk";
  src: url("./_Fonts/Right Grotesk/PPRightGrotesk-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "PP Right Grotesk";
  src: url("./_Fonts/Right Grotesk/PPRightGrotesk-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("./_Fonts/Mori/web/PPMori-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "PP Mori";
  src: url("./_Fonts/Mori/web/PPMori-Extrabold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--off-white);
  color: var(--off-black);
  font-family: "PP Mori", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--off-white);
}

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

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

.page {
  overflow: hidden;
}

.wrap {
  width: min(var(--content-width), calc(100% - (var(--outer-pad) * 2)));
  margin: 0 auto;
}

.hero {
  min-height: 840px;
  padding-bottom: 96px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav {
  height: 136px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
}

.logo {
  width: 100%;
  height: 100%;
}

.nav-actions,
.cta-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 52px;
  padding: 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 1.6px solid transparent;
  font-family: "PP Right Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition:
    background-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 34%,
    rgba(255, 255, 255, 0.24) 48%,
    transparent 62%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 640ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover {
  transform: translateY(-2px);
}

.pill:hover::before {
  opacity: 1;
  transform: translateX(120%);
}

.pill:active {
  transform: translateY(0) scale(0.985);
  transition-duration: 120ms;
}

.pill:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.pill-label,
.pill-arrow,
.availability-dot {
  position: relative;
  z-index: 1;
}

.availability-label-short {
  display: none;
}

.mobile-break {
  display: none;
}

.mobile-muted-break {
  display: none;
}

.pill-arrow {
  display: inline-block;
  transform-origin: 35% 65%;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.pill:hover .pill-arrow {
  transform: translate3d(3px, -3px, 0) rotate(8deg);
}

.pill-dark {
  background: var(--off-black);
  color: var(--off-white);
}

.pill-outline {
  background: var(--off-white);
  border-color: var(--off-black);
  color: var(--off-black);
}

.pill-icon {
  text-transform: none;
}

.pill-outline:hover {
  background: var(--off-black);
  color: var(--off-white);
}

.pill-light {
  background: var(--off-white);
  border-color: var(--off-white);
  color: var(--off-black);
}

.pill-light:hover {
  background: transparent;
  color: var(--off-white);
}

.pill-on-dark {
  border-color: var(--off-white);
  color: var(--off-white);
}

.pill-on-dark:hover {
  background: var(--off-white);
  color: var(--off-black);
}

.availability-dot {
  width: 21px;
  height: 12px;
  border-radius: 999px;
  background: var(--green);
  flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(32, 255, 28, 0.42);
  transition:
    width 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.availability {
  gap: 12px;
}

.availability:hover .availability-dot {
  width: 26px;
  box-shadow: 0 0 0 4px rgba(32, 255, 28, 0.14);
  transform: scaleY(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .pill,
  .pill::before,
  .pill-arrow,
  .availability-dot {
    transition: none;
  }

  .pill:hover,
  .pill:active,
  .pill:hover .pill-arrow,
  .availability:hover .availability-dot {
    transform: none;
  }

  .pill:hover::before {
    opacity: 0;
  }
}

.hero-positioning {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.eyebrow {
  margin: 0;
  font-family: "PP Right Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-headline-wrap {
  position: relative;
}

.design-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  white-space: nowrap;
  vertical-align: baseline;
}

.hero-badges {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  vertical-align: middle;
}

.hero-badges img {
  width: 1.91em;
  height: 1em;
  flex: 0 1 1.91em;
  border-radius: 999px;
  object-fit: cover;
}

.hero-badges img + img {
  margin-left: -0.17em;
}

.heading-xl,
.heading-lg {
  margin: 0;
  font-family: "PP Right Grotesk", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--near-black);
}

.heading-xl {
  font-size: 96px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.heading-lg {
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-title {
  padding-top: 0;
  color: var(--near-black);
}

.muted {
  color: var(--muted);
}

.portfolio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.work-card {
  position: relative;
  aspect-ratio: 484 / 644;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-sothebys img {
  width: 118.6%;
  height: 114.6%;
  max-width: none;
  transform: translate(-8%, -10%);
}

.work-equue img {
  width: 120.3%;
  height: 105.2%;
  max-width: none;
  transform: translate(-11%, -5%);
}

.services-funnel {
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 96px;
}

.statement {
  align-self: flex-start;
  width: 100%;
  color: var(--off-black);
}

.services-list,
.cta,
.copyright {
  width: min(var(--narrow-width), 100%);
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.service-row {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 90px;
  align-items: center;
}

.service-icon {
  width: 74px;
  height: 74px;
}

.flip-y {
  transform: scaleY(-1);
}

.service-content {
  display: grid;
  grid-template-columns: 648px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.service-content h3 {
  color: var(--off-black);
}

.service-content p {
  width: 100%;
  max-width: 484px;
  margin: 0;
  font-family: "PP Mori", Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--off-black);
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(30, 36, 40, 0.62);
}

.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.portrait-panel,
.funnel-panel {
  height: 712px;
  overflow: hidden;
  border-radius: 4px;
}

.portrait-panel img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: left bottom;
}

.funnel-panel {
  padding: 96px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
  color: var(--off-white);
}

.funnel-panel h2 {
  color: var(--off-white);
}

.cta-actions {
  gap: 4px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.copyright {
  display: flex;
  align-items: center;
}

.copyright-pill {
  min-height: 43px;
  margin-right: -4px;
  padding: 11px 12px;
  border: 1.6px solid var(--off-black);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  font-family: "PP Right Grotesk", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--off-black);
  white-space: nowrap;
}

.copyright-symbol {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  padding: 0;
  font-family: "PP Mori", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.5;
}

@media (max-width: 1200px) {
  :root {
    --outer-pad: 20px;
  }

  .heading-xl {
    font-size: 72px;
  }

  .hero-badges {
    left: 52%;
  }

  .hero-badges img {
    width: 150px;
    height: 78px;
  }

  .service-row {
    gap: 48px;
  }

  .service-content {
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 1fr);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-bottom: 72px;
  }

  .nav {
    height: auto;
    padding-top: 20px;
    align-items: flex-start;
  }

  .logo-link {
    width: 84px;
    height: 84px;
  }

  .nav-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-positioning {
    margin-top: 64px;
    gap: 32px;
  }

  .hero-title {
    padding-top: 0;
  }

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

  .services-funnel {
    padding: 72px 0;
    gap: 72px;
  }

  .service-row,
  .service-content {
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
    width: 100%;
  }

  .service-content p {
    max-width: 100%;
  }

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

  .portrait-panel,
  .funnel-panel {
    height: auto;
    min-height: 560px;
  }

  .portrait-panel {
    aspect-ratio: 648 / 712;
  }
}

@media (max-width: 640px) {
  :root {
    --outer-pad: 16px;
  }

  .heading-xl {
    font-size: 39px;
  }

  .heading-lg {
    font-size: 38px;
  }

  .pill {
    min-height: 44px;
    padding: 12px;
    font-size: 14px;
  }

  .nav.wrap {
    width: 100%;
    padding-left: var(--outer-pad);
    padding-right: var(--outer-pad);
  }

  .nav {
    position: relative;
  }

  .nav-actions {
    position: absolute;
    top: 40px;
    right: var(--outer-pad);
    left: var(--outer-pad);
    width: auto;
    max-width: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .pill-icon {
    display: none;
  }

  .availability {
    width: min(272px, 100%);
    max-width: 100%;
    gap: 10px;
    white-space: nowrap;
    text-align: left;
  }

  .availability-label-full {
    display: none;
  }

  .availability-label-short {
    display: inline;
  }

  .mobile-break {
    display: initial;
  }

  .hero-headline-wrap,
  .hero-title {
    width: 100%;
    max-width: 100%;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-muted-break {
    display: none;
  }

  .mobile-muted-break {
    display: initial;
  }

  .hero-main-sentence,
  .hero-muted-copy {
    display: inline;
    width: auto;
    max-width: none;
  }

  .design-badge-group {
    gap: 0.14em;
  }

  .hero-badges {
    flex-shrink: 1;
    max-width: clamp(148px, 48vw, 206px);
  }

  .hero-badges img {
    width: clamp(58px, 18.5vw, 78px);
    height: calc(clamp(58px, 18.5vw, 78px) / 1.91);
    flex-basis: clamp(58px, 18.5vw, 78px);
  }

  .hero-badges img + img {
    margin-left: clamp(-9px, -2.4vw, -7px);
  }

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

  .services-list {
    gap: 32px;
  }

  .service-row,
  .service-content {
    max-width: 100%;
  }

  .service-content p {
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
  }

  .services-list p {
    width: 100% !important;
    max-width: 100% !important;
  }

  .portrait-panel {
    min-height: 0;
  }

  .portrait-panel,
  .funnel-panel {
    width: 100%;
  }

  .funnel-panel {
    min-height: 520px;
    padding: 48px 18px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: min(100%, 285px);
  }

  .cta-actions .pill {
    width: 100%;
  }
}
