﻿@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Righteous&display=swap");

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #fff;
  --white: #09090b;
  --gray-100: #111113;
  --gray-200: #27272a;
  --gray-400: #a1a1aa;
  --gray-700: #d4d4d8;
  --yellow: #ffe600;
  --yellow-soft: rgba(255, 230, 0, 0.14);
  --panel: #101012;
  --font-display: "Righteous", sans-serif;
  --font-body: "DM Mono", monospace;
  --pad: 2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  background-image:
    linear-gradient(rgba(255, 230, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 230, 0, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
}

.empty-page {
  min-height: 100vh;
  background-image: none;
}

.experience-page {
  min-height: 100vh;
  padding: clamp(4rem, 9vw, 8rem) var(--pad) 8rem;
  background: var(--white);
  color: var(--black);
}

.experience-hero {
  width: min(100%, 1180px);
  margin: 0 auto clamp(1rem, 2.5vw, 2rem);
}

.experience-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.experience-hero h1 {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  width: 100%;
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
  font-weight: 400;
  line-height: 0.88;
  text-transform: uppercase;
  color: var(--black);
}

.experience-hero > p:not(.experience-kicker) {
  width: min(100%, 45rem);
  margin-top: 1.2rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--gray-700);
}

.experience-author {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.experience-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 2rem;
}

.experience-roles span {
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
}

.experience-list {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  gap: 0.45rem;
}

.experience-period {
  margin: 0.65rem 0 0;
  font-family: var(--font-body);
  font-size: clamp(0.62rem, 0.8vw, 0.72rem);
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}

.experience-card {
  position: relative;
  display: grid;
  grid-template-columns: 3.8rem minmax(13rem, 0.7fr) minmax(22rem, 1.5fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  height: 11.5rem;
  padding: 1.4rem clamp(1.2rem, 3vw, 2.2rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.7rem;
  background: #0d0d0f;
  box-shadow: none;
  overflow: hidden;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
  color: rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  transition: color 0.2s ease, transform 0.2s ease;
}

.experience-card:hover {
  border-color: var(--yellow);
  transform: translateY(-0.2rem);
}

.experience-card:hover::after {
  color: var(--yellow);
  transform: translate(0.18rem, -0.18rem) rotate(45deg);
}

.experience-number {
  align-self: start;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--yellow);
}

.experience-brand {
  position: relative;
  display: grid;
  place-items: center start;
  height: 9rem;
  overflow: hidden;
}

.experience-logo {
  width: min(100%, 18rem);
  max-height: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0.75rem 1.5rem rgba(0, 0, 0, 0.34));
}

.experience-logo--pirania {
  width: min(100%, 12rem);
}

.experience-logo--carrefour {
  width: min(100%, 10rem);
}

.experience-logo-placeholder {
  width: min(100%, 12rem);
  height: 6rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
}

.experience-content h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.15rem, 2.15vw, 1.9rem);
  line-height: 1.05;
  max-width: 42rem;
  text-align: left;
  text-transform: uppercase;
  color: var(--black);
}

.experience-content p {
  margin-top: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.82rem, 1vw, 0.95rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-700);
}

img { display: block; max-width: 100%; }

.site-name {
  position: fixed;
  top: 0;
  padding: var(--pad);
  z-index: 100;
  mix-blend-mode: difference;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--black);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3.2vw, 2.6rem);
  width: min(82vw, 24rem);
  min-height: 3.75rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 0, 0.75);
  background: rgba(255, 230, 0, 0.58);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.language-nav {
  position: fixed;
  left: calc(50% + 18rem);
  bottom: 2rem;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  width: 9rem;
  min-height: 3.75rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 230, 0, 0.75);
  background: rgba(255, 230, 0, 0.58);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
}

.bottom-nav a,
.language-nav a {
  position: relative;
  z-index: 1;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.08rem);
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;
  transition: transform 0.2s ease;
}

.bottom-nav a:hover,
.language-nav a:hover {
  transform: translateY(-1px);
}

.language-nav a[aria-current="true"] {
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.is-transitioning .bottom-nav,
.is-transitioning .language-nav {
  pointer-events: none;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--yellow);
  color: #000;
  pointer-events: none;
  transform: translateX(100%);
  will-change: transform, clip-path;
}

.page-transition::before {
  content: "";
  position: absolute;
  top: -8vh;
  bottom: -8vh;
  width: min(26vw, 24rem);
  border-radius: 999px;
  background: var(--white);
  opacity: 0.92;
}

.page-transition--forward::before {
  left: 0;
  transform: translateX(-58%);
}

.page-transition--back::before {
  right: 0;
  transform: translateX(58%);
}

.page-transition span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 8rem);
  line-height: 0.9;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.hero {
  position: relative;
  width: 100%;
  height: calc(1150px + 100vh);
  overflow: clip;
  background: var(--white);
  color: var(--black);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  left: var(--pad);
  top: 8.5rem;
  width: 8rem;
  height: 0.45rem;
  background: var(--yellow);
}

.hero::after {
  right: var(--pad);
  bottom: 10rem;
  width: min(22vw, 18rem);
  aspect-ratio: 1;
  border: 1px solid var(--yellow);
  opacity: 0.55;
}

.hero-center {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(9, 9, 11, 0.08), rgba(9, 9, 11, 0.18)), url("../assets/images/portrait-main.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 118%;
  clip-path: polygon(25% 25%, 75% 25%, 75% 75%, 25% 75%);
  opacity: 1;
  will-change: clip-path, background-size, opacity;
}

.hero-title {
  position: sticky;
  top: 0;
  z-index: 4;
  height: 100vh;
  display: grid;
  place-items: center;
  width: min(92vw, 1180px);
  margin: -100vh auto 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 0.82;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  color: var(--black);
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.44);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}

.hero-parallax {
  position: relative;
  z-index: 2;
  width: min(100% - var(--pad) * 2, 64rem);
  margin: 0 auto;
  padding-top: 150px;
}

.hero-parallax-img {
  position: relative;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  opacity: 1;
  will-change: transform, opacity;
  border: 1px solid rgba(255, 230, 0, 0.55);
}

.hero-parallax-img--one { width: 33%; }
.hero-parallax-img--two {
  width: 46%;
  margin: 8rem auto 0;
}
.hero-parallax-img--three {
  width: 33%;
  margin: 8rem 0 0 auto;
}
.hero-parallax-img--four {
  width: 42%;
  margin: 8rem 0 0 6rem;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 24rem;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0), var(--white));
  pointer-events: none;
}

.hero-left,
.hero-right {
  position: absolute;
  bottom: var(--pad);
  z-index: 4;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
}

.hero-left  { left: var(--pad); }
.hero-right { right: var(--pad); }

.tools-section {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--white);
  color: var(--black);
}

.tools-inner {
  width: min(100% - var(--pad) * 2, 1180px);
  margin: 0 auto;
}

.tools-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.tools-inner h2 {
  width: min(100%, 64rem);
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
  color: var(--black);
}

.tools-marquee {
  width: 100%;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-block: 1.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.tools-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: tools-marquee 34s linear infinite;
}

.tool-logo {
  flex: 0 0 auto;
  width: clamp(8.5rem, 12vw, 12rem);
  height: clamp(7.5rem, 10vw, 9.5rem);
  padding: 0.2rem;
  overflow: visible;
  object-fit: contain;
}

@keyframes tools-marquee {
  to {
    transform: translateX(-50%);
  }
}

.guide-section {
  min-height: 100vh;
  padding: clamp(4rem, 9vw, 8rem) var(--pad) 8rem;
  display: grid;
  align-items: center;
  background: var(--white);
  color: var(--black);
}

.guide-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.guide-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.guide-inner h2 {
  width: 100%;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.1vw, 5.9rem);
  font-weight: 400;
  line-height: 0.84;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--black);
}

.guide-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.guide-link {
  position: relative;
  min-height: 16rem;
  padding: 1.4rem;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 1.7rem;
  background: #0d0d0f;
  color: var(--black);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.guide-link::after {
  content: "";
  position: absolute;
  right: 1.4rem;
  top: 1.4rem;
  width: 0.85rem;
  height: 0.85rem;
  border-top: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
  color: rgba(255, 255, 255, 0.72);
  transform: rotate(45deg);
  transition: color 0.2s ease, transform 0.2s ease;
}

.guide-number {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--yellow);
}

.guide-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.guide-copy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-700);
}

.guide-link:hover {
  border-color: var(--yellow);
  transform: translateY(-0.25rem);
}

.guide-link:hover::after {
  color: var(--yellow);
  transform: translate(0.18rem, -0.18rem) rotate(45deg);
}

.contact-section {
  min-height: 100vh;
  padding: clamp(4rem, 9vw, 8rem) var(--pad) 8rem;
  display: grid;
  align-items: center;
  background: var(--white);
  color: var(--black);
}

.contact-inner {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.contact-kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.contact-inner h2 {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 400;
  line-height: 0.82;
  text-transform: uppercase;
  color: var(--black);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 9rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 2rem;
  background: #0d0d0f;
  color: var(--black);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-link::after {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-top: 0.16rem solid currentColor;
  border-right: 0.16rem solid currentColor;
  transform: rotate(45deg);
}

.contact-link span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  text-transform: uppercase;
}

.contact-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-0.25rem);
}

.email-modal {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: grid;
  place-items: center;
  padding: var(--pad);
  background: rgba(0, 0, 0, 0.68);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.email-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.email-modal__panel {
  position: relative;
  width: min(100%, 34rem);
  padding: clamp(1.4rem, 4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 1.7rem;
  background: #0d0d0f;
  color: var(--black);
}

.email-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  cursor: pointer;
}

.email-modal__kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
}

.email-modal__panel h2 {
  margin-top: 0.55rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1;
  text-transform: uppercase;
}

.email-modal__address {
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 3vw, 1.1rem);
  font-weight: 800;
  color: var(--yellow);
  overflow-wrap: anywhere;
}

.email-modal__copy {
  width: 100%;
  min-height: 3.2rem;
  margin-top: 1.4rem;
  border: 0;
  border-radius: 999px;
  background: var(--yellow);
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 900px) {
  :root {
    --pad: 1.25rem;
  }

  .experience-card {
    grid-template-columns: 3rem 1fr;
    height: auto;
    min-height: 14rem;
    gap: 1.4rem;
  }

  .experience-brand,
  .experience-content {
    grid-column: 2;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .guide-links {
    grid-template-columns: 1fr;
  }

  .tools-inner h2 {
    width: min(100%, 42rem);
  }

  .hero-center { background-size: auto 118%; }
  .hero-title {
    font-size: clamp(3.8rem, 12vw, 7rem);
  }
  .hero-parallax { width: min(100% - var(--pad) * 2, 48rem); }
  .hero-parallax-img--one,
  .hero-parallax-img--three { width: 44%; }
  .hero-parallax-img--two { width: 58%; }
  .hero-parallax-img--four { width: 54%; margin-left: 2rem; }
}

@media (max-width: 600px) {
  .site-name { font-size: 1.25rem; }
  .contact-section {
    min-height: 100svh;
    align-items: start;
    padding: 3rem var(--pad) 7.5rem;
  }
  .contact-inner h2 {
    font-size: clamp(3.2rem, 17vw, 5.2rem);
    line-height: 0.84;
  }
  .contact-links {
    gap: 0.75rem;
    margin-top: 2rem;
  }
  .contact-link {
    min-height: 6.4rem;
    padding: 1.15rem;
    border-radius: 1.35rem;
  }
  .contact-link span {
    font-size: clamp(1rem, 6vw, 1.45rem);
  }
  .email-modal {
    padding: 1rem;
  }
  .email-modal__panel {
    width: 100%;
    padding: 1.25rem;
    border-radius: 1.35rem;
  }
  .email-modal__panel h2 {
    max-width: calc(100% - 2.4rem);
    font-size: clamp(1.35rem, 8vw, 2rem);
  }
  .email-modal__address {
    font-size: clamp(0.82rem, 4vw, 1rem);
  }
  .experience-page {
    align-items: start;
    padding-top: 3rem;
  }
  .experience-hero {
    margin-bottom: 2rem;
    width: calc(100vw - 1rem);
    margin-left: calc(var(--pad) * -1 + 0.5rem);
  }
  .experience-hero h1 {
    font-size: clamp(1.15rem, 5vw, 1.45rem);
    line-height: 0.96;
  }
  .experience-hero > p:not(.experience-kicker) {
    font-size: 0.95rem;
  }
  .guide-section {
    align-items: start;
    padding-top: 3rem;
  }
  .guide-inner h2 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
    white-space: normal;
  }
  .guide-link {
    min-height: 11rem;
    border-radius: 1.4rem;
  }
  .tools-section {
    padding-block: 3rem;
  }
  .tools-inner h2 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }
  .tools-marquee {
    margin-top: 2rem;
  }
  .tool-logo {
    width: 7.5rem;
    height: 6.8rem;
    padding: 0.15rem;
  }
  .experience-card {
    border-radius: 1.4rem;
    min-height: 18rem;
    padding: 1.3rem;
  }
  .experience-card::after {
    right: 1.2rem;
    top: 1.2rem;
  }
  .experience-brand {
    height: 7rem;
  }
  .experience-logo {
    width: min(100%, 15rem);
  }
  .bottom-nav {
    bottom: 1rem;
    left: 1rem;
    width: calc(100vw - 9.8rem);
    min-height: 3.35rem;
    gap: 0.72rem;
    padding-inline: 0.8rem;
    transform: none;
  }
  .language-nav {
    left: auto;
    right: 0.7rem;
    bottom: 1rem;
    width: 6.3rem;
    min-height: 3.35rem;
    gap: 0.45rem;
    padding-inline: 0.6rem;
    transform: none;
  }
  .bottom-nav a {
    font-size: clamp(0.72rem, 3.2vw, 0.84rem);
  }
  .language-nav a {
    font-size: clamp(0.68rem, 3vw, 0.8rem);
  }
  .hero-center {
    background-size: auto 118%;
    clip-path: polygon(18% 28%, 82% 28%, 82% 72%, 18% 72%);
  }
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 3rem);
  }
  .hero-parallax { padding-top: 170px; }
  .hero-parallax-img--one,
  .hero-parallax-img--three { width: 58%; }
  .hero-parallax-img--two {
    width: 68%;
    margin-top: 9rem;
  }
  .hero-parallax-img--four {
    width: 66%;
    margin: 9rem 0 0 1rem;
  }
  .hero-left,
  .hero-right {
    width: 9.5rem;
    line-height: 1.4;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }
  .hero-right { display: none; }
}
