:root {
  --ink: #171717;
  --paper: #F6F4F0;
  --muted: #67645F;
  --line: rgba(23, 23, 23, .12);
  --accent: #B08D57;
  --accent-light: #D5B98A;
  --accent-dark: #8C6B3E;
  --dark: #191919;
  --white: #fff;
  --max: 1440px;
  --pad: clamp(20px, 4vw, 48px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden
}

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

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

button {
  font: inherit;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: var(--white);
  transition: transform .85s cubic-bezier(.76, 0, .24, 1);
}

.loader.is-hidden {
  transform: translateY(-100%);
}

.loader__word {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;

  max-width: none;
  margin: 0;
  padding: 24px 48px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition:
    background-color .35s ease,
    backdrop-filter .35s ease,
    box-shadow .35s ease,
    padding .35s ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;

  background: rgba(246, 244, 240, .82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 1px 0 rgba(23, 23, 23, .08);
}

.brand {
  font-weight: 600;
  letter-spacing: -.03em;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  font-size: .88rem;
}

.site-nav a::after,
.text-link::after,
.contact__details a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width .3s;
}

.site-nav a:hover::after,
.text-link:hover::after,
.contact__details a:hover::after {
  width: 100%;
}

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

.section {
  max-width: var(--max);
  margin: auto;
  padding: 120px 48px;
}

.section-label {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.section-title {
  max-width: 980px;
  margin: 52px 0 72px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 140px;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.hero__title {
  position: relative;
  z-index: 2;
  margin: 0;
  /* font-family: "Space Grotesk", sans-serif; */
  font-size: clamp(4rem, 10.5vw, 10rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
}

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

.hero__footer {
  position: relative;
  z-index: 2;
  margin-top: 65px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero__footer p {
  max-width: 540px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
}

.round-link {
  width: 84px;
  height: 84px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  transition: background .3s, color .3s, transform .3s;
}

.round-link:hover {
  background: var(--ink);
  color: var(--white);
  transform: rotate(-25deg);
}

.hero__orb {
  position: absolute;
  right: -8vw;
  top: 20%;
  width: clamp(260px, 34vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  opacity: .11;
  filter: blur(2px);
}

/* Editorial studio hero */
.hero--studio {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  align-items: flex-start;
  isolation: isolate;
  padding:
    clamp(100px, 10vw, 140px) clamp(16px, 3vw, 32px) clamp(60px, 6vw, 80px);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  z-index: -2;
  background: #e9dfd1;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -1;
  background: linear-gradient(118deg, rgba(246, 244, 240, .98) 0%, rgba(246, 244, 240, .92) 29%, rgb(246 244 240) 43%, rgb(246 244 240 / 76%) 64%, rgba(246, 244, 240, 0) 100%);
}

.hero__content {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
  padding-right: 32px;
}

.hero--studio .eyebrow {
  color: var(--accent-dark);
  margin: 0 0 clamp(24px, 3vw, 42px);
}

.hero--studio h1 {
  max-width: 680px;
  margin: 0;
  /* font-family: Georgia, "Times New Roman", serif; */
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -.05em;
}

.hero__actions {
  margin-top: clamp(34px, 5vw, 42px);
}

.hero__actions .text-link {
  display: inline-grid;
  align-items: center;
  gap: 12px;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
}

@media (max-width: 1024px) {
  .hero--studio {
    min-height: 88svh;
    padding-top: 116px;
    padding-bottom: 72px;
  }

  .hero__media img {
    object-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(118deg, rgba(246, 244, 240, .98) 0%, rgba(246, 244, 240, .92) 29%, rgb(246 244 240) 43%, rgb(246 244 240 / 76%) 64%, rgba(246, 244, 240, 0) 100%)
  }

  .hero--studio h1 {
    max-width: 650px;
    font-size: clamp(3.6rem, 8vw, 6.6rem);
  }
}

@media (max-width: 700px) {
  .hero--studio {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--paper);
  }

  .hero__media {
    position: relative;
    inset: auto;
    width: 100%;
    height: 55svh;
    min-height: 410px;
    order: 1;
  }

  .hero__media img {
    object-position: 63% center;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content {
    order: 2;
    padding: 42px 24px 58px;
  }

  .hero--studio .eyebrow {
    margin-bottom: 20px;
  }

  .hero--studio h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 5rem);
    line-height: .94;
  }

  .hero__actions {
    margin-top: 32px;
  }
}

@media (max-width: 420px) {
  .hero__media {
    height: 49svh;
    min-height: 350px;
  }

  .hero__content {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .hero--studio h1 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
  }
}

.intro__grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 10vw;
  align-items: start;
}

.intro__grid .section-title {
  margin-top: 52px;
}

.intro__copy {
  padding-top: 58px;
  font-size: 1.08rem;
}

.intro__copy p {
  margin: 0 0 24px;
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  font-weight: 600;
}

.experience {
  padding-bottom: 80px;
}

.experience-list {
  border-top: 1px solid var(--line);
}

.experience-row {
  display: grid;
  grid-template-columns: 55px 1fr 1.6fr 140px;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s, background .3s;
}

.experience-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  background: rgba(255, 255, 255, .55);
}

.experience-row__number,
.experience-row time {
  color: var(--muted);
  font-size: .78rem;
}

.experience-row h3,
.experience-row p {
  margin: 0;
}

.experience-row h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}

.experience-row>div p,
.experience-row__summary {
  color: var(--muted);
  font-size: .9rem;
}

.experience-row time {
  text-align: right;
}

.profile-band {
  max-width: none;
  background: var(--accent);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 8vw;
  align-items: center;
  padding-left: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(48px, calc((100vw - var(--max)) / 2 + 48px));
}

.profile-card {
  margin: 0;
  overflow: hidden;
  border-radius: 999px 999px 28px 28px;
  aspect-ratio: .78;
}

.profile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  opacity: .7;
}

.profile-band blockquote {
  margin: 24px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
  letter-spacing: -.055em;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.skill-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.skill-card span {
  color: var(--muted);
  font-size: .75rem;
}

.skill-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 70px 0 24px;
}

.skill-card p {
  max-width: 520px;
  color: var(--muted);
}

.education__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 56px;
}

.education__grid>div {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.education__grid p:not(.kicker) {
  color: var(--muted);
}

.contact {
  max-width: none;
  background: var(--dark);
  color: var(--white);
  padding-left: max(48px, calc((100vw - var(--max)) / 2 + 48px));
  padding-right: max(48px, calc((100vw - var(--max)) / 2 + 48px));
}

.contact__top {
  display: flex;
  gap: 18px;
  align-items: center;
}

.contact__top img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.contact__title {
  margin: 56px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: .88;
  letter-spacing: -.07em;
  font-weight: 400;
}

.contact__button {
  display: inline-grid;
  place-items: center;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform .35s;
}

.contact__button:hover {
  transform: scale(1.08) rotate(-8deg);
}

.contact__details {
  margin-top: 100px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  justify-content: space-between;
}

.contact__details a {
  display: inline-block;
}

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  display: flex;
  justify-content: space-between;
  padding: 30px max(48px, calc((100vw - var(--max)) / 2 + 48px));
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .2, 1);
}

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

@media (max-width: 900px) {

  .site-header,
  .site-header.is-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    width: 100%;
    padding: 20px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(246, 244, 240, 0.96);

    /* Important: remove blur on the mobile header */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    box-shadow: 0 1px 0 rgba(23, 23, 23, 0.08);
  }

  .brand,
  .menu-toggle {
    position: relative;
    z-index: 1000;
  }

  .menu-toggle {
    position: relative;

    display: block;
    padding: 6px 10px;

    border: 1px solid var(--accent);
    border-radius: 4px;
    background: transparent;
    color: var(--ink);

    cursor: pointer;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 999;

    width: 100%;
    height: 100svh;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;

    padding: 100px 24px 40px;

    background: var(--dark);
    color: var(--white);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(-20px);

    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.45s cubic-bezier(.76, 0, .24, 1);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    display: block;

    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.8rem, 13vw, 5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.055em;

    color: var(--white);
  }

  .site-nav a::after {
    display: none;
  }

  .menu-toggle.is-open {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 100svh;
  }

  .hero__footer {
    display: block;
  }

  .round-link {
    margin-top: 35px;
    width: 66px;
    height: 66px;
  }

  .section-title {
    margin-bottom: 52px;
  }

  .experience-row {
    grid-template-columns: 32px 1fr;
  }

  .experience-row time {
    grid-column: 2;
    text-align: left;
  }

  .experience-row__summary {
    grid-column: 2;
  }

  .profile-band {
    grid-template-columns: 1fr;
  }

  .profile-card {
    max-width: 300px;
  }

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

  .skill-card h3 {
    margin-top: 45px;
  }

  .contact__button {
    width: 140px;
    height: 140px;
  }

  .contact__details,
  .site-footer {
    flex-direction: column;
    gap: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }

  .loader {
    display: none;
  }

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


/* Work archive and case studies */
.page-main {
  padding-top: 120px;
}

.page-hero {
  padding-top: 110px;
  padding-bottom: 72px;
}

.page-hero__kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
}

.page-hero h1 {
  max-width: 1100px;
  margin: 28px 0 34px;
  font-weight: 400;
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: .84;
  letter-spacing: -.075em;
}

.page-hero__intro {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.3rem);
}

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

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

.work-card {
  display: block;
}

.work-card__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.22;
  background: #ddd;
}

.work-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(255, 255, 255, .18));
}

.work-card__visual span {
  position: absolute;
  z-index: 2;
  left: 7%;
  bottom: 7%;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 5.5rem);
  line-height: .85;
  letter-spacing: -.07em;
  color: #fff;
}

.work-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 16px;
}

.work-card__meta h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: -.045em;
}

.work-card__meta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.work-card__arrow {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: .3s;
}

.work-card:hover .work-card__arrow {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: rotate(-35deg);
}

.work-card:hover .work-card__visual {
  transform: scale(.99);
}

.work-card__visual {
  transition: transform .45s cubic-bezier(.2, .7, .2, 1);
}

.work-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.work-cta {
  margin-top: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.work-cta p {
  max-width: 620px;
  color: var(--muted);
}

.case-hero {
  min-height: 78svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-hero h1 {
  margin: 0;
  max-width: 1180px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 14vw, 13rem);
  line-height: .77;
  font-weight: 400;
  letter-spacing: -.085em;
}

.case-meta {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.case-meta p {
  margin: 0;
}

.case-meta small {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 8px;
}

.case-cover {
  max-width: none;
  min-height: 78svh;
  display: grid;
  place-items: center;
  padding: 8vw;
}

.case-cover__mark {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(5rem, 15vw, 15rem);
  letter-spacing: -.09em;
}

.case-content {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 8vw;
}

.case-content h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: .95;
  font-weight: 400;
  letter-spacing: -.06em;
}

.case-content__copy {
  color: var(--muted);
  font-size: 1.08rem;
}

.case-content__copy p {
  margin-top: 0;
  margin-bottom: 24px;
}

.case-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
}

.case-panel {
  min-height: 470px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.case-panel:nth-child(3) {
  grid-column: 1/-1;
  min-height: 600px;
}

.case-panel__device {
  width: min(72%, 520px);
  aspect-ratio: .62;
  border: 10px solid #111;
  border-radius: 34px;
  background: linear-gradient(160deg, #f5f1e8, #c7a76c);
  box-shadow: 0 35px 70px rgba(0, 0, 0, .22);
}

.next-project {
  display: block;
  background: var(--dark);
  color: #fff;
}

.next-project .section {
  padding-top: 90px;
  padding-bottom: 100px;
}

.next-project small {
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255, 255, 255, .55);
}

.next-project h2 {
  margin: 36px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  line-height: .8;
  font-weight: 400;
  letter-spacing: -.075em;
}

@media (max-width:900px) {

  .work-grid,
  .work-grid-portfolio {
    grid-template-columns: 1fr
  }

  .case-meta,
  .case-content {
    grid-template-columns: 1fr
  }

  .case-gallery {
    grid-template-columns: 1fr
  }

  .case-panel:nth-child(3) {
    grid-column: auto
  }

  .page-main {
    padding-top: 80px
  }
}

/* Final hero alignment override — keep text aligned with the site header */
.hero.hero--studio {
  padding-left: 0;
  padding-right: 0;
}

.hero.hero--studio .hero__content {
  width: auto;
  max-width: 760px;
  margin: 0;
  margin-left: 122px;
  justify-self: start;
}

@media (max-width: 1024px) {
  .hero.hero--studio .hero__content {
    max-width: 650px;
    margin-left: 24px;
    margin-right: 24px;
  }
}

@media (max-width: 700px) {
  .hero.hero--studio .hero__content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 42px 24px 58px;
  }
}

@media (max-width: 420px) {
  .hero.hero--studio .hero__content {
    padding: 34px 20px 46px;
  }
}

.approach {
  background: #f8f8f8;
  text-align: center;
  overflow: hidden;
}

.approach__label {
  margin-top: 48px;
  margin-bottom: 32px;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}

.approach__title {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  line-height: .98;
  letter-spacing: -.05em;
}

.approach__text {
  max-width: 620px;
  margin: 40px auto 80px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.7;
}

.approach__image {
  margin-top: 40px;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.approach__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.outline-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  min-width: 260px;
  padding: 18px 22px;

  border: 1px solid #2a2d36;
  border-radius: 14px;

  color: #181818;
  background: transparent;

  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;

  overflow: hidden;

  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    background-color 0.3s ease;
}

.outline-button__icon {
  flex-shrink: 0;

  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover */
.outline-button:hover {
  border-color: #181818;
}

.outline-button:hover .outline-button__icon {
  transform: translate(6px, -6px);
}

@media (max-width:768px) {

  .approach__title {

    font-size: clamp(2rem, 8vw, 3.3rem);

  }

  .approach__text {

    margin: 28px auto 48px;
    font-size: 1rem;

  }

  .approach__image {

    height: 320px;

  }

}

/* =========================================================
   CONSOLIDATED RESPONSIVE OVERRIDES
   Keep this section at the very end of the stylesheet.
========================================================= */

@media (max-width: 900px) {
  .section {
    width: 100%;
    max-width: var(--max);
    padding: 64px 24px;
  }

  .intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro__grid .section-title {
    margin-top: 36px;
    margin-bottom: 24px;
  }

  .intro__copy {
    max-width: 680px;
    padding-top: 0;
  }

  .experience-row {
    grid-template-columns: 40px minmax(0, 1fr) 100px;
    gap: 20px;
  }

  .experience-row__summary {
    grid-column: 2 / 4;
  }

  .profile-band {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 72px 24px;
  }

  .profile-card {
    width: min(100%, 360px);
  }

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

  .education__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact {
    padding: 72px 24px;
  }

  .site-footer {
    padding: 28px 24px;
  }

  .work-grid,
  .work-grid-portfolio,
  .case-meta,
  .case-content,
  .case-gallery {
    grid-template-columns: 1fr;
  }

  .case-panel:nth-child(3) {
    grid-column: auto;
  }

  .page-main {
    padding-top: 80px;
  }
}

@media (max-width: 700px) {
  .hero--studio {
    min-height: auto;
    display: flex;
    flex-direction: column;
    padding: 0;
    background: var(--paper);
  }

  .hero__media {
    position: relative;
    inset: auto;
    order: 1;
    width: 100%;
    height: 55svh;
    min-height: 360px;
  }

  .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 63% center;
  }

  .hero__overlay {
    display: none;
  }

  .hero__content,
  .hero.hero--studio .hero__content {
    order: 2;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 42px 24px 58px;
  }

  .hero--studio h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 13vw, 4.5rem);
    line-height: .96;
  }

  .hero--studio .eyebrow {
    margin-bottom: 20px;
    font-size: .75rem;
  }

  .hero__actions {
    margin-top: 32px;
  }

  .section {
    padding: 48px 20px;
  }

  .section-title {
    margin: 32px 0 44px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .experience-row {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .experience-row time,
  .experience-row__summary {
    grid-column: 2;
    text-align: left;
  }

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

  .skill-card {
    min-height: auto;
    padding: 28px 22px;
  }

  .skill-card h3 {
    margin-top: 40px;
  }

  .contact__details,
  .site-footer,
  .work-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .case-hero {
    min-height: 62svh;
  }

  .case-hero h1 {
    font-size: clamp(3.5rem, 18vw, 6rem);
  }

  .case-panel,
  .case-panel:nth-child(3) {
    min-height: 360px;
  }

  .approach__title {
    font-size: clamp(2rem, 8vw, 3.3rem);
    padding-left: 8px;
    padding-right: 8px;
  }

  .approach__text {
    margin: 28px auto 48px;
    padding-inline: 20px;
    font-size: 1rem;
  }

  .approach__image {
    height: 320px;
  }
}

@media (max-width: 420px) {

  .site-header,
  .site-header.is-scrolled {
    padding: 16px 20px;
  }

  .brand {
    font-size: .88rem;
  }

  .menu-toggle {
    padding: 5px 9px;
  }

  .site-nav {
    padding: 90px 20px 36px;
  }

  .site-nav a {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .hero__media {
    height: 48svh;
    min-height: 320px;
  }

  .hero__content,
  .hero.hero--studio .hero__content {
    padding: 34px 20px 46px;
  }

  .hero--studio h1 {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .section {
    padding: 40px 20px;
  }

  .contact__button {
    width: 130px;
    height: 130px;
  }

  .approach__image {
    height: 260px;
  }
}

.img-visual--hero {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}

.img-visual--hero img {
  width: 70%;
  height: auto;
  display: block;
}

.graphic-intro{
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* GoPro case study */
.gopro-page {
  padding-top: 96px;
}

.gopro-intro {
  padding-top: clamp(80px, 10vw, 150px);
  padding-bottom: 72px;
}

.gopro-intro h1 {
  margin: 24px 0 34px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 400;
  line-height: .82;
  letter-spacing: -.075em;
}

.gopro-intro__lead {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
}

.gopro-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.gopro-facts small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.gopro-facts p {
  margin: 0;
}

.gopro-visual {
  margin: 0;
  overflow: hidden;
  background: #090b12;
}

.gopro-visual img {
  width: 100%;
  height: auto;
}

.gopro-visual--hero {
  width: 100%;
}

.gopro-story {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(40px, 9vw, 140px);
}

.gopro-story__label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .75rem;
}

.gopro-story__body {
  max-width: 900px;
}

.gopro-story h2,
.gopro-challenge h2,
.gopro-feature h2 {
  margin: 0 0 30px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}

.gopro-story p,
.gopro-feature p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
}

.gopro-challenge {
  max-width: 1200px;
}

.gopro-challenge h2 {
  max-width: 1080px;
  margin-top: 30px;
}

.gopro-feature {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.gopro-feature__copy {
  position: sticky;
  top: 130px;
  align-self: start;
  padding-top: 24px;
}

.gopro-feature .gopro-visual {
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
}

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

.gopro-dark-section .page-hero__kicker,
.gopro-dark-section .gopro-feature p {
  color: rgba(255, 255, 255, .62);
}

.gopro-feature--reverse {
  grid-template-columns: 1.28fr .72fr;
}

.gopro-feature--reverse .gopro-feature__copy {
  order: 2;
}

.gopro-feature--reverse .gopro-visual {
  order: 1;
}

.gopro-reflection {
  padding-bottom: 130px;
}

@media (max-width: 900px) {
  .gopro-page {
    padding-top: 72px;
  }

  .gopro-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .gopro-story,
  .gopro-feature,
  .gopro-feature--reverse {
    grid-template-columns: 1fr;
  }

  .gopro-feature__copy {
    position: static;
    padding-top: 0;
  }

  .gopro-feature--reverse .gopro-feature__copy,
  .gopro-feature--reverse .gopro-visual {
    order: initial;
  }
}

@media (max-width: 560px) {
  .gopro-intro {
    padding-top: 48px;
  }

  .gopro-intro h1 {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .gopro-facts {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .gopro-story {
    gap: 26px;
  }

  .gopro-feature .gopro-visual {
    border-radius: 10px;
  }
}