:root {
  --black: #000000;
  --white: #ffffff;
  --soft-white: #f7f7f4;
  --grey: #EAEAEA;
  --text: #0a0a0a;
  --muted: #5c5c5c;
  --pink: #E81C8C;
  --pink-dark: #c91478;
  --max: 980px;
  --header-h: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.4;
}

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

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  width: min(410px, calc(100% - 70px));
}

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

.section-light {
  color: var(--text);
  background: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(16px, 4vw, 44px);
  color: var(--white);
  background: var(--black);
}

.brand {
  justify-self: start;
  display: inline-flex;
  text-decoration: none;
}

.brand-mark {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 3px;
  color: var(--white);
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  position: relative;
}

.brand-mark::after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  right: -3px;
  bottom: -3px;
  background: var(--pink);
  border-radius: 50%;
}

.site-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: clamp(18px, 4.2vw, 46px);
  font-size: 12px;
  letter-spacing: 0;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pink);
  opacity: 1;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-video {
  position: absolute;
  inset: var(--header-h) 0 0;
  width: 100%;
  height: calc(100% - var(--header-h));
  object-fit: cover;
  object-position: center;
  background: var(--black);
}

.intro {
  padding: clamp(46px, 7vw, 78px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: clamp(28px, 7vw, 86px);
  align-items: start;
}

.intro-copy p {
  max-width: 390px;
  margin: 0 0 18px;
  font-size: clamp(13px, 1.55vw, 17px);
  line-height: 1.16;
  letter-spacing: 0;
}

.text-link {
  display: inline-block;
  font-size: clamp(15px, 1.85vw, 22px);
  line-height: 1;
  letter-spacing: 0;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--pink);
}

.text-link.light:hover,
.text-link.light:focus-visible {
  color: var(--white);
}

.story-image,
.portfolio-hero,
.vision-banner {
  position: relative;
  overflow: hidden;
}

.story-image {
  min-height: clamp(185px, 35vw, 390px);
  display: grid;
  place-items: center;
}

.story-image img,
.vision-banner img,
.portfolio-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

.story-heading {
  position: relative;
  z-index: 2;
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.story-heading span {
  display: block;
  font-size: clamp(18px, 3.2vw, 38px);
  font-weight: 300;
  line-height: 0.95;
}

.story-heading strong {
  display: block;
  font-size: clamp(22px, 4vw, 48px);
  line-height: 0.92;
  font-weight: 900;
}

.statement {
  padding: clamp(48px, 7.5vw, 82px) 0;
  text-align: center;
}

.statement p {
  margin: 0 auto;
  max-width: 330px;
  font-size: clamp(10px, 1.15vw, 14px);
  line-height: 1.25;
  letter-spacing: 0;
}

.approach {
  padding: clamp(54px, 8vw, 96px) 0;
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(130px, 230px) 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

.approach-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
}

.approach-visual img {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

.portfolio-hero {
  height: clamp(240px, 47vw, 650px);
  background: var(--black);
}

.portfolio-track,
.portfolio-slide {
  position: absolute;
  inset: 0;
}

.portfolio-slide {
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 600ms ease, transform 900ms ease;
}

.portfolio-slide.active {
  opacity: 1;
  transform: scale(1);
}

.portfolio-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.slider-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.slider-btn:hover,
.slider-btn:focus-visible {
  background: var(--pink);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--white);
}

.pink-panel {
  padding: clamp(54px, 8.5vw, 98px) 0;
  color: var(--white);
  background: var(--pink);
}

.pink-grid {
  display: grid;
  grid-template-columns: minmax(210px, 360px) 1fr;
  gap: clamp(28px, 10vw, 150px);
  align-items: end;
}

.pink-grid p {
  margin: 0 0 18px;
  max-width: 300px;
  font-size: clamp(11px, 1.25vw, 15px);
  line-height: 1.22;
  letter-spacing: 0;
}

.pink-grid .text-link {
  justify-self: start;
  color: var(--white);
}

.vision-banner {
  height: clamp(150px, 32vw, 360px);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--white);
}

.vision-banner img {
  object-fit: cover;
  object-position: center 38%;
}

.vision-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
}

.vision-banner h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(24px, 4vw, 45px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 400;
  text-align: center;
}

.site-footer {
  padding: clamp(52px, 8vw, 92px) 0 30px;
  background: var(--grey);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(215px, 330px) 1fr;
  gap: clamp(34px, 7vw, 86px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 78px);
}

.footer-intro span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
}

.footer-intro h2 {
  max-width: 270px;
  margin: 0 0 6px;
  font-size: clamp(16px, 2vw, 25px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 400;
}

.footer-intro p {
  max-width: 285px;
  margin: 0;
  font-size: clamp(13px, 1.55vw, 18px);
  line-height: 1.1;
  letter-spacing: 0;
}

.contact-form {
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form label {
  display: block;
  margin-bottom: 13px;
}

.contact-form span {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 0;
  padding: 5px 0 7px;
  background: transparent;
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
}

.submit-btn {
  border: 1px solid var(--black);
  border-radius: 0;
  padding: 8px 16px;
  color: var(--black);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.submit-btn:hover,
.submit-btn:focus-visible {
  color: var(--white);
  background: var(--black);
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-message {
  min-height: 20px;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--pink-dark);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

.footer-bottom h3 {
  margin: 0 0 16px;
  font-size: clamp(15px, 1.8vw, 22px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
}

.footer-bottom p,
.footer-bottom a {
  display: block;
  margin: 0 0 7px;
  font-size: 10px;
  color: var(--text);
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  text-decoration: none;
  font-size: 9px;
  transition: color 180ms ease, background 180ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--white);
  background: var(--black);
}

.legal {
  margin-top: 36px;
  font-size: 9px;
}

.legal p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 850px) {
  .container,
  .narrow {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    padding: 12px 22px 22px;
    color: var(--white);
    background: var(--black);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 26px;
  }
}

@media (max-width: 560px) {
  :root {
    --header-h: 42px;
  }

  .container,
  .narrow {
    width: calc(100% - 68px);
  }

  .site-header {
    grid-template-columns: auto 1fr;
    padding: 0 16px;
  }

  .brand-mark {
    width: 17px;
    height: 17px;
    border-width: 1.5px;
    font-size: 10px;
  }

  .brand-mark::after {
    width: 5px;
    height: 5px;
    right: -2px;
    bottom: -2px;
  }

  .site-nav {
    position: static;
    grid-column: 2;
    display: flex;
    justify-self: center;
    gap: 20px;
    padding: 0;
    font-size: 7px;
    background: transparent;
    transform: none;
  }

  .site-nav a {
    padding: 0;
    border-bottom: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-video {
    object-position: center center;
  }

  .menu-toggle {
    display: none;
  }

  .intro {
    padding: 30px 0 34px;
  }

  .intro-grid {
    grid-template-columns: 1fr minmax(155px, 1.1fr);
    gap: 28px;
  }

  .intro-copy p {
    margin-bottom: 10px;
    font-size: 9px;
    line-height: 1.12;
  }

  .text-link {
    font-size: 12px;
    text-underline-offset: 3px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .story-image {
    min-height: 154px;
  }

  .portfolio-hero {
    height: clamp(155px, 47vw, 320px);
  }

  .story-heading span {
    font-size: 16px;
  }

  .story-heading strong {
    font-size: 20px;
  }

  .statement {
    padding: 33px 0;
  }

  .statement p {
    max-width: 170px;
    font-size: 7px;
  }

  .approach {
    padding: 48px 0;
  }

  .approach-grid {
    grid-template-columns: 88px 1fr;
    gap: 8px;
  }

  .approach-visual {
    min-height: 150px;
  }

  .approach-visual img {
    width: 205px;
    max-width: none;
  }

  .pink-panel {
    padding: 48px 0 44px;
  }

  .pink-grid {
    grid-template-columns: 120px 1fr;
    gap: 35px;
  }

  .pink-grid p {
    margin-bottom: 12px;
    max-width: 110px;
    font-size: 7px;
    line-height: 1.2;
  }

  .pink-grid .text-link {
    align-self: center;
    font-size: 12px;
  }

  .vision-banner {
    height: 150px;
    place-items: center;
  }

  .vision-banner h2 {
    transform: translateX(28px);
    font-size: 19px;
  }

  .site-footer {
    padding: 48px 0 28px;
  }

  .footer-grid {
    grid-template-columns: minmax(118px, 1fr) minmax(130px, 1.25fr);
    gap: 26px;
    margin-bottom: 42px;
  }

  .footer-intro span {
    margin-bottom: 7px;
    font-size: 6px;
  }

  .footer-intro h2 {
    font-size: 12px;
  }

  .footer-intro p {
    font-size: 10px;
  }

  .contact-form label {
    margin-bottom: 8px;
  }

  .contact-form span {
    font-size: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 2px 0 4px;
  }

  .submit-btn {
    display: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 27px;
  }

  .footer-bottom h3 {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .footer-bottom p,
  .footer-bottom a {
    margin-bottom: 4px;
    font-size: 6px;
  }

  .socials {
    gap: 5px;
  }

  .socials a {
    width: 12px;
    height: 12px;
    font-size: 6px;
  }

  .legal {
    margin-top: 28px;
    font-size: 5px;
  }

  .slider-controls {
    bottom: 16px;
  }
}
