:root {
    --ink: #080808;
    --paper: #e9e6df;
    --muted: #9c9a94;
    --line: rgba(255, 255, 255, .15);
    --ease: cubic-bezier(.2, .7, .2, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--ink);
    color: #f5f3ee;
    font-family: Manrope, Arial, sans-serif;
    overflow-x: hidden
}

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

button {
    font: inherit
}

.loader {
    position: fixed;
    inset: 0;
    background: #080808;
    display: grid;
    place-items: center;
    z-index: 99;
    animation: leave 1s 1.2s forwards
}

.loader span {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -.08em
}

@keyframes leave {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none
    }
}
/* SITE HEADER */
/* =========================================================
   SITE HEADER
========================================================= */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 1000;

  height: 82px;

  padding: 0 4vw;

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

  color: #f1eee7;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  position: relative;

  z-index: 1002;

  display: flex;
  align-items: baseline;
  gap: .6rem;

  color: inherit;

  text-decoration: none;
}

.brand span {
  font-size: 2rem;

  font-weight: 800;

  letter-spacing: -.08em;
}

.brand i {
  font-family: "DM Mono", monospace;

  font-size: 13px;

  font-style: normal;

  text-transform: uppercase;

  letter-spacing: .12em;

  opacity: .65;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.site-header nav {
  display: flex;

  align-items: center;

  gap: 2rem;
}

.site-header nav a {
  position: relative;

  color: #f1eee7;

  font-family: "DM Mono", monospace;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .12em;

  text-decoration: none;

  opacity: .75;

  transition: opacity .3s ease;
}

.site-header nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -7px;

  width: 100%;
  height: 1px;

  background: currentColor;

  transform: scaleX(0);

  transform-origin: right;

  transition: transform .3s ease;
}

.site-header nav a:hover {
  opacity: 1;
}

.site-header nav a:hover::after {
  transform: scaleX(1);

  transform-origin: left;
}


/* =========================================================
   MENU BUTTON
========================================================= */

.menu-toggle {
  display: none;

  position: relative;

  z-index: 1002;

  border: 0;

  padding: 0;

  background: transparent;

  color: #f1eee7;

  cursor: pointer;

  font-family: "DM Mono", monospace;

  font-size: 11px;

  text-transform: uppercase;

  letter-spacing: .1em;
}

.menu-icon {
  width: 25px;
  height: 16px;

  margin-left: .7rem;

  display: inline-flex;

  flex-direction: column;

  justify-content: space-between;

  vertical-align: middle;
}

.menu-icon i {
  display: block;

  width: 100%;
  height: 1px;

  background: currentColor;

  transition:
    transform .35s ease,
    opacity .25s ease;
}
/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 800px) {

  .site-header {
    height: 70px;

    padding: 0 5vw;
  }


  /* ---------------------------------------------
     MOBILE BRAND
  --------------------------------------------- */

  .brand {
    gap: .45rem;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .brand i {
    font-size: 7px;
  }


  /* ---------------------------------------------
     SHOW MENU BUTTON
  --------------------------------------------- */

  .menu-toggle {
    display: flex;

    align-items: center;
  }


  /* ---------------------------------------------
     HIDE NAV BY DEFAULT
  --------------------------------------------- */

  .site-header nav {
    position: fixed;

    inset: 0;

    z-index: 1001;

    width: 100%;
    height: 100svh;

    padding:
      7.5rem
      8vw
      4rem;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    gap: 1.2rem;

    background: #090909;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transform: translateY(-12px);

    transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s ease;
  }


  /* ---------------------------------------------
     OPEN NAV
  --------------------------------------------- */

  .site-header.menu-open nav {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;

    transform: translateY(0);
  }


  /* ---------------------------------------------
     MOBILE NAV LINKS
  --------------------------------------------- */

  .site-header nav a {
    display: block;

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

    font-size: clamp(2.8rem, 12vw, 5rem);

    font-weight: 500;

    line-height: .9;

    letter-spacing: -.07em;

    opacity: 1;
  }

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


  /* ---------------------------------------------
     NUMBERING / VISUAL RHYTHM
  --------------------------------------------- */

  .site-header nav a:nth-child(1)::before {
    content: "01";
  }

  .site-header nav a:nth-child(2)::before {
    content: "02";
  }

  .site-header nav a:nth-child(3)::before {
    content: "03";
  }

  .site-header nav a:nth-child(4)::before {
    content: "04";
  }

  .site-header nav a:nth-child(5)::before {
    content: "05";
  }

  .site-header nav a::before {
    display: inline-block;

    width: 2rem;

    margin-right: .8rem;

    vertical-align: middle;

    color: #555;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    font-weight: 400;

    letter-spacing: .08em;
  }


  /* ---------------------------------------------
     HAMBURGER → X
  --------------------------------------------- */

  .site-header.menu-open .menu-icon i:first-child {
    transform: translateY(7.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-icon i:last-child {
    transform: translateY(-7.5px) rotate(-45deg);
  }


  .site-header.menu-open .menu-text {
    opacity: .6;
  }


  /* ---------------------------------------------
     STOP PAGE SCROLL WHEN MENU IS OPEN
  --------------------------------------------- */

  body.menu-open {
    overflow: hidden;
  }

}

/* HERO PAGE */
.hero {
    height: 100svh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 0 6vw 8vh;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, #17221f, #625c4f 45%, #151515);
    transform: scale(1.05);
    animation: heroZoom 14s var(--ease) infinite alternate
}

.hero-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 65% 35%, transparent, #050505 78%);
    opacity: .6
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .8), transparent 65%)
}

@keyframes heroZoom {
    to {
        transform: scale(1.12)
    }
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 900px
}

.eyebrow {
    font: 10px "DM Mono", monospace;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #b7b4ad;
    margin: 0 0 1.5rem
}

.hero h1 {
    font-size: clamp(5rem, 12vw, 11rem);
    line-height: .78;
    letter-spacing: -.09em;
    margin: 0;
    font-weight: 700
}

.hero h1 em,
.section-head h2 em,
.recognition h2 em,
.about h2 em,
.press h2 em,
.contact h2 em {
    font-family: Georgia, serif;
    font-weight: 400
}

.hero-deck {
    max-width: 400px;
    font-size: 14px;
    line-height: 1.6;
    margin: 2rem 0
}

.circle-cta {
    width: 94px;
    height: 94px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 11px;
    text-transform: uppercase;
    transition: .5s
}

.circle-cta span {
    font-size: 18px
}

.circle-cta:hover {
    background: #fff;
    color: #000;
    transform: rotate(-12deg)
}

.hero-foot {
    position: absolute;
    bottom: 3vh;
    right: 4vw;
    left: 6vw;
    display: flex;
    justify-content: space-between;
    font: 9px "DM Mono";
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aaa
}
SECTION
/*  */
.section-dark {
    background: var(--ink)
}

.section-light {
    background: var(--paper);
    color: var(--ink)
}

section {
    padding: 9rem 6vw
}

.section-label {
    font: 10px "DM Mono";
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #999;
    margin-bottom: 5rem
}


/* RECOGNITION */
.recognition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line)
}

.recognition-grid>div {
    padding: 3rem 2rem 4rem 0;
    border-right: 1px solid var(--line)
}

.recognition-grid>div+div {
    padding-left: 5vw;
    border-right: 0
}

.recognition strong {
    font: 10px "DM Mono";
    color: #777
}

.recognition h2 {
    font-size: clamp(2.5rem, 5vw, 5.5rem);
    line-height: .95;
    letter-spacing: -.06em;
    font-weight: 600;
    margin: 5rem 0 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 5rem;
    align-items: end;
    margin-bottom: 5rem
}

.section-head h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: .8;
    letter-spacing: -.08em;
    margin: 0
}

.section-head>p {
    max-width: 320px;
    color: #999;
    font-size: 13px;
    line-height: 1.7
}


/* =========================================================
   PROJECT SECTION
   ========================================================= */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}


/* PROJECT CARD */

.project-card {
  position: relative;
  display: block;
  min-height: 46vw;
  max-height: 680px;
  overflow: hidden;
  background: #171717;
  color: #fff;
  text-decoration: none;
}


/* PROJECT IMAGE */

.project-image {
  position: absolute;
  inset: 0;
  transition:
    transform 1s var(--ease),
    filter .8s var(--ease);

  filter: saturate(.75);
}


/* Individual project colours */

.project-image-1 {
  background: linear-gradient(
    135deg,
    #3d4a45,
    #876f57
  );
}

.project-image-2 {
  background: linear-gradient(
    135deg,
    #25292c,
    #9a765d
  );
}

.project-image-3 {
  background: linear-gradient(
    135deg,
    #544d42,
    #1a282c
  );
}


/* Atmospheric overlay */

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, .85) 100%
    );

  z-index: 1;
}


/* HOVER */

.project-card:hover .project-image {
  transform: scale(1.06);
  filter: saturate(1);
}


/* PROJECT INFORMATION */

.project-meta {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;

  z-index: 2;
}


.project-meta small {
  display: block;

  font: 9px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .12em;

  color: #c4c2bc;

  margin-bottom: .8rem;
}


.project-meta h3 {
  margin: 0;

  font-size: clamp(2rem, 3.2vw, 3.8rem);
  line-height: .9;
  letter-spacing: -.06em;

  color: #fff;
}


.project-meta p {
  max-width: 320px;

  margin: .9rem 0 0;

  font-size: 11px;
  line-height: 1.5;

  color: #c0beb8;
}


/* ARROW */

.project-arrow {
  position: absolute;

  top: 1.75rem;
  right: 1.75rem;

  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;

  z-index: 3;

  font-size: 16px;
  color: #fff;

  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}


.project-card:hover .project-arrow {
  background: #fff;
  color: #080808;
  transform: rotate(8deg);
}


/* PROJECT FOOTER */

.projects-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 1.5rem;
  padding-top: 1rem;

  border-top: 1px solid #292929;

  font: 9px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: .1em;

  color: #777;
}


.projects-footer a {
  color: #aaa;
  transition: color .3s ease;
}


.projects-footer a:hover {
  color: #fff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

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

  .project-card {
    min-height: 65vw;
  }

  .project-card:nth-child(3) {
    grid-column: span 2;
    min-height: 55vw;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

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

  .project-card,
  .project-card:nth-child(3) {
    grid-column: span 1;
    min-height: 115vw;
    max-height: none;
  }

  .project-meta {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
  }

  .project-arrow {
    top: 1.25rem;
    right: 1.25rem;
  }

  .projects-footer {
    gap: 1rem;
  }

}


/* ABOUT */
.about-grid,
.press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8vw
}

.about h2,
.press h2,
.contact h2 {
    font-size: clamp(4rem, 8vw, 8rem);
    line-height: .82;
    letter-spacing: -.08em;
    margin: 0
}

.about-copy {
    max-width: 500px;
    padding-top: 2rem
}

.about-copy p,
.press-grid p {
    font-size: clamp(1rem, 1.5vw, 1.35rem);
    line-height: 1.6;
    margin: 0 0 2rem
}

.text-link {
    display: inline-flex;
    gap: 2rem;
    padding: 1rem 0;
    border-bottom: 1px solid #999;
    font: 11px "DM Mono";
    text-transform: uppercase
}



.press-grid {
    align-items: end
}

.press-grid>div {
    max-width: 500px
}

.press-marks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 3rem
}

.press-marks span {
    border: 1px solid #444;
    padding: .7rem 1rem;
    font: 9px "DM Mono";
    letter-spacing: .1em
}

.contact {
    text-align: center;
    padding-top: 12rem;
    padding-bottom: 12rem
}

.contact h2 {
    margin-bottom: 5rem
}

.big-link {
    font-size: clamp(1.3rem, 3vw, 3rem);
    letter-spacing: -.04em;
    border-bottom: 1px solid #555;
    padding-bottom: 1rem
}

.big-link span {
    font-size: .6em;
    margin-left: 1rem
}

footer {
    padding: 2rem 4vw;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    color: #777;
    font: 9px "DM Mono";
    text-transform: uppercase;
    letter-spacing: .1em
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .9s var(--ease), transform .9s var(--ease)
}

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

@media(max-width:800px) {
    .site-header {
        height: 70px
    }

    .site-header nav {
        position: fixed;
        inset: 0;
        background: #080808;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 20vw;
        gap: 1.5rem;
        font-size: 2rem;
        transform: translateY(-100%);
        transition: .6s var(--ease);
        mix-blend-mode: normal
    }

    .site-header nav.open {
        transform: none
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 2;
        font: 10px "DM Mono";
        text-transform: uppercase
    }

    .hero {
        padding: 0 6vw 7vh;
        min-height: 650px
    }

    .hero h1 {
        font-size: 20vw
    }

    .hero-deck {
        font-size: 13px
    }

    .recognition-grid,
    .about-grid,
    .press-grid {
        grid-template-columns: 1fr
    }

    .recognition-grid>div,
    .recognition-grid>div+div {
        padding: 2rem 0 4rem;
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .recognition h2 {
        margin-top: 3rem
    }

    .section-head {
        display: block
    }

    .section-head>p {
        margin-top: 2rem
    }

    .project-card,
    .project-card:nth-child(3n) {
        grid-column: span 12;
        min-height: 125vw
    }

    .section-dark,
    .section-light {
        padding-top: 6rem;
        padding-bottom: 6rem
    }

    .section-label {
        margin-bottom: 3rem
    }

    .service-list>div {
        grid-template-columns: 12% 1fr;
        gap: 1rem
    }

    .service-list p {
        grid-column: 2;
        margin: 0
    }

    .service-list h3 {
        font-size: 2.3rem
    }

    footer {
        flex-direction: column;
        gap: 1rem
    }
}

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

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

/* =========================IMAGES========================== */
/* =========================================
   IMAGE SYSTEM
========================================= */

.hero-media,
.project-image,
.recognition-image,
.about-visual,
.service-image,
.press-visual,
.contact-background {
  overflow: hidden;
}

.hero-media img,
.project-image img,
.recognition-image img,
.about-visual img,
.service-image img,
.press-visual img,
.contact-background img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* =========================================
   HERO
========================================= */

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  position: absolute;
  inset: 0;
}


/* =========================================
   PROJECTS
========================================= */

.project-image {
  position: relative;
}

.project-image img {
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}


/* =========================================
   RECOGNITION
========================================= */

.recognition-card {
  position: relative;
}

.recognition-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 2rem;
}

.recognition-image img {
  transition: transform 0.8s ease;
}

.recognition-card:hover .recognition-image img {
  transform: scale(1.04);
}


/* =========================================
   ABOUT
========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.about-visual {
  width: 100%;
  min-height: 600px;
}

.about-visual img {
  height: 100%;
}


/* =========================================
   SERVICES
========================================= */
.service-list {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 8% 1fr;
  min-height: 520px;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  isolation: isolate;
}


/* =========================================
   IMAGE
========================================= */

.service-image {
  position: absolute;
  z-index: -1;

  width: min(48vw, 680px);
  height: 390px;

  right: 4%;
  top: 50%;
  transform: translateY(-50%);

  overflow: hidden;

  clip-path: polygon(
    8% 0,
    100% 0,
    92% 100%,
    0 100%
  );

  background: #111;

  transition:
    width 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0.35) 100%
    );

  transition: opacity 0.6s ease;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;

  border: 1px solid rgba(255, 255, 255, 0.18);

  pointer-events: none;
}

.service-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;

  filter: grayscale(35%) contrast(1.05);

  transform: scale(1.08);

  transition:
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
}


/* =========================================
   SERVICE NUMBER
========================================= */

.service-item > span {
  align-self: start;

  padding-top: 0.5rem;

  font-family: "DM Mono", monospace;
  font-size: 10px;

  letter-spacing: 0.15em;

  color: rgba(255, 255, 255, 0.5);

  transition:
    color 0.5s ease,
    transform 0.5s ease;
}


/* =========================================
   CONTENT
========================================= */

.service-item h3 {
  position: relative;
  z-index: 5;

  align-self: center;

  margin: 0;

  max-width: 760px;

  font-size: clamp(4rem, 8vw, 9rem);

  font-weight: 400;

  line-height: 0.78;

  letter-spacing: -0.075em;

  color: #000000;

  mix-blend-mode: normal;

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

.service-item p {
  position: absolute;

  left: 8%;
  bottom: 3rem;

  z-index: 6;

  max-width: 260px;

  margin: 0;

  font-size: 16px;

  line-height: 1.7;

  color: rgba(2, 2, 2, 0.85);

  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}


/* =========================================
   LARGE INDEX NUMBER
========================================= */

.service-item::before {
  content: attr(data-number);

  position: absolute;

  right: 2%;
  bottom: -3rem;

  font-family: "DM Mono", monospace;

  font-size: clamp(8rem, 17vw, 18rem);

  line-height: 1;

  letter-spacing: -0.08em;

  color: rgba(255, 255, 255, 0.035);

  z-index: -1;

  pointer-events: none;

  transition:
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.6s ease;
}


/* =========================================
   HOVER
========================================= */

.service-item:hover .service-image {
  width: min(54vw, 760px);
  height: 430px;

  clip-path: polygon(
    3% 0,
    100% 0,
    97% 100%,
    0 100%
  );
}

.service-item:hover .service-image img {
  transform: scale(1);

  filter:
    grayscale(0%)
    contrast(1.08);
}

.service-item:hover .service-image::before {
  opacity: 0.35;
}

.service-item:hover h3 {
  transform: translateX(1.5rem);
}

.service-item:hover > span {
  color: #fff;
  transform: translateX(0.5rem);
}

.service-item:hover p {
  transform: translateY(-0.4rem);
}

.service-item:hover::before {
  transform: translateX(-2rem);

  color: rgba(255, 255, 255, 0.06);
}


/* =========================================
   SECONDARY IMAGE POSITIONING
   Creates visual rhythm
========================================= */

.service-item:nth-child(2) .service-image {
  right: 12%;
  top: 42%;
  width: min(40vw, 580px);
  height: 360px;
}

.service-item:nth-child(3) .service-image {
  right: 2%;
  top: 58%;
  width: min(45vw, 620px);
  height: 400px;
}

.service-item:nth-child(4) .service-image {
  right: 15%;
  top: 45%;
  width: min(42vw, 600px);
  height: 370px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .service-item {
    grid-template-columns: 60px 1fr;
    min-height: 460px;
  }

  .service-image {
    width: 65vw;
    height: 330px;

    right: 2%;
  }

  .service-item h3 {
    font-size: clamp(4rem, 9vw, 7rem);
  }

  .service-item p {
    left: 60px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

  .service-item {
    display: block;

    min-height: auto;

    padding: 1.5rem 0 2.5rem;
  }

  .service-item > span {
    position: relative;

    display: block;

    margin-bottom: 3rem;

    z-index: 10;
  }

  .service-image,
  .service-item:nth-child(2) .service-image,
  .service-item:nth-child(3) .service-image,
  .service-item:nth-child(4) .service-image {
    position: relative;

    top: auto;
    right: auto;

    width: 92%;
    height: 230px;

    margin: 0 0 2rem auto;

    transform: none;
  }

  .service-item h3 {
    position: relative;

    font-size: clamp(3.5rem, 15vw, 6rem);

    line-height: 0.82;

    transform: none !important;
  }

  .service-item p {
    position: relative;

    left: auto;
    bottom: auto;

    margin-top: 2rem;
    margin-left: 15%;

    max-width: 230px;
  }

  .service-item::before {
    right: -1rem;
    bottom: 1rem;

    font-size: 9rem;
  }

  .service-item:hover .service-image,
  .service-item:nth-child(2):hover .service-image,
  .service-item:nth-child(3):hover .service-image,
  .service-item:nth-child(4):hover .service-image {
    width: 96%;
    height: 245px;
  }
}


/* =========================================
   GLOBAL REACH
========================================= */

.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.press-visual {
  width: 100%;
  aspect-ratio: 4 / 5;
}

.press-visual img {
  height: 100%;
}


/* =========================================
   CONTACT
========================================= */

.contact {
  position: relative;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-background img {
  width: 100%;
  height: 100%;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}

.contact-content {
  position: relative;
  z-index: 2;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .about-grid,
  .press-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual {
    min-height: 400px;
  }

  .press-visual {
    aspect-ratio: 16 / 10;
  }

}
