/* ===== FONTS ===== */
@font-face {
  font-family: 'Suisse Yamaha';
  src: url('assets/fonts/suisse-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Suisse Yamaha';
  src: url('assets/fonts/suisse-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ===== RESET / TOKENS ===== */
:root {
  --ink: #111111;
  --black: #050709;
  --paper: #e3d9c0;
  --paper-2: #e8debf;
  --paper-deep: #d5cba6;
  --blue: #123cff;
  --blue-deep: #071437;
  --red: #a82d27;
  --brass: #d6b36a;
  --chrome: #c8d0d6;
  --muted: rgba(17, 17, 17, .78);
  --white-muted: rgba(255, 255, 255, .72);
  --gutter: 4.5vw;
  --ease: cubic-bezier(.5, .25, 0, 1);
  --font-body: 'Suisse Yamaha', Arial, sans-serif;
  --font-display: 'Suisse Yamaha', Arial, sans-serif;
  --font-accent: 'Suisse Yamaha', Arial, sans-serif;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--ink);
  max-width: 100vw;
  overflow-x: hidden;
  overflow-x: clip;
}

#dynamic,
#fixed {
  max-width: 100vw;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .045;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 42px 42px;
  mix-blend-mode: overlay;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
  padding: 0;
}

img {
  border-style: none;
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  background-color: transparent;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
}

::selection {
  background: var(--brass);
  color: var(--black);
}

a:focus-visible,
button:focus-visible {
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.55);
  outline: 3px solid var(--brass);
  outline-offset: 4px;
}

.skip-link {
  background: var(--brass);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  left: -9999px;
  padding: 12px 18px;
  position: absolute;
  text-decoration: none;
  top: 0;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
  position: fixed;
  top: calc(12px + env(safe-area-inset-top));
}

/* ===== COMMON ===== */
.animated-titles {
  padding: 0 var(--gutter);
  width: calc(100% - 9vw);
}

.animated-titles h1,
.animated-titles h2,
.animated-titles p {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

.animated-titles-text {
  display: block;
  will-change: transform, opacity;
}

.section-kicker {
  color: var(--red);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  line-height: 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.reveal {
  transition:
    transform .85s var(--ease),
    opacity .85s ease;
}

.is-js .reveal {
  transform: translateY(34px);
  opacity: 0;
}

.reveal.is-visible,
.animated-titles-text.is-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.is-js .animated-titles-text {
  transform: translateY(112%);
  opacity: 0;
  transition:
    transform .9s var(--ease),
    opacity .7s ease;
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal-delay-2 {
  transition-delay: .24s;
}

/* ===== MAIN NAVIGATION ===== */
.main-navigation {
  left: 0;
  mix-blend-mode: difference;
  padding: 24px var(--gutter);
  padding-top: calc(24px + env(safe-area-inset-top));
  position: fixed;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  z-index: 50;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.main-navigation.is-scrolled {
  mix-blend-mode: unset;
  background: rgba(5, 7, 9, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, .08);
}

.main-navigation.is-scrolled.main-navigation-black {
  background: rgba(227, 217, 192, .82);
  border-bottom-color: rgba(17, 17, 17, .12);
}

.main-navigation ul {
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 22px;
}

.main-navigation ul li {
  margin-right: 26px;
  transform: translateY(0);
  transition:
    transform .75s var(--ease),
    opacity .35s ease;
}

.main-navigation ul li:last-child {
  flex: 0 1 100%;
  margin: 0;
  text-align: right;
}

.main-navigation a:link,
.main-navigation a:visited,
.main-navigation a:hover,
.main-navigation a:active {
  align-items: center;
  color: var(--paper);
  display: inline-flex;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  text-decoration: none;
}

.main-navigation li:not(.active) {
  opacity: .68;
}

.main-navigation li.active {
  opacity: 1;
}

.main-navigation li.active a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.main-navigation-black {
  mix-blend-mode: unset;
}

.main-navigation-black a:link,
.main-navigation-black a:visited,
.main-navigation-black a:hover,
.main-navigation-black a:active {
  color: var(--ink);
}

@media (min-width: 768px) {
  .main-navigation ul {
    font-size: 20px;
    line-height: 26px;
  }

  .main-navigation ul li {
    margin-right: 70px;
  }
}

/* ===== INTRO ===== */
.intro {
  background:
    radial-gradient(circle at 11% 18%, rgba(24, 73, 255, .8), transparent 22vw),
    radial-gradient(circle at 88% 26%, rgba(168, 45, 39, .44), transparent 25vw),
    linear-gradient(180deg, #050709 0%, #071437 54%, #101010 100%);
  color: #fff;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  padding: 22vw 0 0;
  position: relative;
  z-index: 2;
}

.intro::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 14vw;
}

@media (min-width: 768px) {
  .intro {
    padding: 16vw 0 0;
  }

  .intro::before {
    top: 13.5vw;
  }
}

.intro-viewport {
  position: relative;
}

.intro-text {
  position: relative;
  z-index: 3;
}

.intro-text > .animated-titles-text {
  color: var(--paper);
  font-size: clamp(4.6rem, 18vw, 18rem);
  line-height: .9;
  margin: 0;
  text-shadow: 0 2vw 6vw rgba(0,0,0,.35);
  text-transform: uppercase;
}

.intro-text .animated-titles-text {
  opacity: 1 !important;
  transform: none !important;
}

.intro-text > .animated-titles-text + .animated-titles-text {
  margin-top: .02em;
}

.intro-text-offset {
  color: var(--brass);
  margin-left: 7vw;
}

.intro-text-last {
  color: var(--paper);
}

@media (min-width: 768px) {
  .intro-text > .animated-titles-text {
    font-size: clamp(7rem, 16vw, 18rem);
    line-height: .88;
  }

  .intro-text > .animated-titles-text + .animated-titles-text {
    margin-top: .01em;
  }

  .intro-text-offset {
    margin-left: 12vw;
  }
}

.intro-media {
  margin: -2vw 0 0;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

.intro-media img {
  box-shadow: 0 3vw 9vw rgba(0,0,0,.42);
  height: auto;
  width: 100%;
}

.intro-media figcaption,
.story-image figcaption,
.custom-image figcaption,
.inspection-image figcaption {
  color: var(--white-muted);
  display: flex;
  gap: 18px;
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
}

.intro-media figcaption p,
.story-image figcaption,
.custom-image figcaption,
.inspection-image figcaption {
  min-width: 0;
}

.intro-media figcaption span {
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  flex: 0 0 auto;
  padding: 2px 8px;
  text-transform: uppercase;
}

.intro-pin {
  background: var(--red);
  color: #fff;
  font-family: 'Suisse Yamaha', sans-serif;
  max-width: 260px;
  padding: 18px;
  position: absolute;
  right: var(--gutter);
  top: 16vw;
  transform: rotate(3deg);
  z-index: 4;
}

.intro-pin span {
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 66px;
  line-height: 60px;
}

.intro-pin p {
  font-size: 15px;
  line-height: 19px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .intro-text > .animated-titles-text {
    font-size: clamp(3.7rem, 16vw, 5.5rem);
    letter-spacing: 0;
    line-height: .94;
  }

  .intro-text > .animated-titles-text + .animated-titles-text {
    margin-top: 0;
  }

  .intro-text-offset {
    margin-left: 4vw;
  }

  .intro-media figcaption {
    flex-wrap: wrap;
  }

  .intro-pin {
    display: inline-block;
    margin: 5vw var(--gutter) 0;
    max-width: none;
    padding: 14px 18px;
    position: static;
    right: auto;
    top: auto;
    transform: rotate(-1.5deg);
    width: fit-content;
  }

  .intro-pin span {
    font-size: 54px;
    line-height: 46px;
  }

  .intro-pin p {
    font-size: 14px;
    line-height: 18px;
  }
}

/* ===== PARALLEL TEXTS ===== */
.intro-skills {
  contain: layout paint;
  margin: 0 0 14vw;
  overflow: hidden;
  padding-top: 11vw;
  width: 100%;
}

.intro-skills h2 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 9vw;
  font-weight: 400;
  margin: 0;
  position: relative;
  white-space: nowrap;
}

.intro-skills h2:first-child {
  animation: marquee-left 18s linear infinite;
}

.intro-skills h2:last-child {
  animation: marquee-right 22s linear infinite;
  color: var(--brass);
}

.intro-skills .parallel-texts-separator {
  background-color: var(--brass);
  height: .28vw;
  margin: 0 var(--gutter);
  position: relative;
  top: .5vw;
  width: calc(100% - 9vw);
}

@media (min-width: 768px) {
  .intro-skills {
    margin: 0 0 9vw;
    padding-top: 9vw;
  }

  .intro-skills h2 {
    font-size: 8.4vw;
  }
}

@keyframes marquee-left {
  to {
    transform: translateX(-45%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-38%);
  }

  to {
    transform: translateX(0);
  }
}

/* ===== INTRO BIO ===== */
.intro-bio {
  color: #fff;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 29px;
  margin-left: auto;
  padding: 0 var(--gutter) 18vw;
}

.intro-bio p {
  color: rgba(255,255,255,.82);
  margin: 0 0 24px;
}

.intro-bio p:first-child {
  color: #fff;
  font-size: 24px;
  line-height: 33px;
}

.intro-bio p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .intro-bio {
    font-size: 30px;
    line-height: 40px;
    padding: 0 12vw 10vw 0;
    width: calc(57% - 9vw);
  }

  .intro-bio p:first-child {
    font-size: 38px;
    line-height: 46px;
  }
}

/* ===== DATA WALL ===== */
.data-wall {
  background:
    radial-gradient(circle at 16% 8%, rgba(18,60,255,.18), transparent 30vw),
    linear-gradient(180deg, var(--paper) 0%, #d8cea8 100%);
  color: var(--ink);
  padding: 15vw 0 13vw;
  position: relative;
  z-index: 2;
}

.data-wall .animated-titles h2 {
  color: var(--ink);
  font-size: clamp(4.5rem, 22vw, 13rem);
  line-height: .96;
}

.data-wall .animated-titles h2 + h2 {
  color: var(--blue);
  margin-top: .02em;
}

@media (min-width: 768px) {
  .data-wall {
    padding: 9vw 0;
  }

  .data-wall .animated-titles h2 {
    font-size: clamp(7rem, 12.5vw, 13rem);
    line-height: .94;
  }
}

.data-wall-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 7vw var(--gutter) 0;
  width: calc(100% - 9vw);
}

.data-column {
  border-top: 2px solid var(--ink);
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  margin-bottom: 8vw;
  padding-top: 18px;
}

.data-column-heading,
.data-column-content {
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 16px;
  line-height: 22px;
}

.data-column-heading {
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.data-column-content {
  margin-top: 4.5vw;
  padding-right: 4vw;
}

.data-column-content p {
  margin: 0 0 7px;
}

@media (min-width: 768px) {
  .data-wall-columns {
    flex-wrap: nowrap;
    padding: 4.5vw var(--gutter) 0;
  }

  .data-column {
    flex: 1 0 25%;
    margin-bottom: 0;
    min-height: 270px;
  }

  .data-column-heading,
  .data-column-content {
    font-size: 20px;
    line-height: 30px;
  }

  .data-column-content {
    margin-top: 1.5vw;
  }
}

/* ===== STORY ===== */
.story {
  background: var(--paper-2);
  padding: 12vw var(--gutter);
  position: relative;
  z-index: 2;
}

.story-grid {
  display: grid;
  gap: 8vw;
  width: 100%;
}

.story-copy h2,
.custom-heading h2,
.notes-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 12vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.story-copy p:not(.section-kicker),
.custom-copy p,
.notes-copy p:not(.section-kicker),
.specs-copy p {
  color: var(--muted);
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 19px;
  line-height: 30px;
  margin-top: 24px;
}

.story-copy p:not(.section-kicker):first-of-type {
  color: var(--ink);
  font-size: 23px;
  line-height: 34px;
}

.story-image img,
.custom-image img,
.inspection-image img {
  width: 100%;
}

.story-image figcaption,
.custom-image figcaption,
.inspection-image figcaption {
  color: rgba(17,17,17,.76);
}

@media (min-width: 768px) {
  .story {
    padding: 9vw var(--gutter);
  }

  .story-grid {
    align-items: end;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  }

  .story-copy h2,
  .custom-heading h2,
  .notes-copy h2 {
    font-size: clamp(4.8rem, 7.2vw, 7.5rem);
    line-height: 1.02;
  }
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 10vw;
}

.timeline-item {
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 14px;
  padding-top: 20px;
}

.timeline-item span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 58px;
  font-weight: 700;
  line-height: 54px;
}

.timeline-item h3,
.inspection-item h3,
.custom-card h3 {
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 22px;
  line-height: 27px;
  margin: 0;
}

.timeline-item p,
.inspection-item p,
.custom-card p {
  color: var(--muted);
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    margin-top: 7vw;
  }
}

/* ===== SPECS ===== */
.specs {
  background:
    radial-gradient(circle at 90% 14%, rgba(214,179,106,.24), transparent 18vw),
    radial-gradient(circle at 8% 78%, rgba(18,60,255,.4), transparent 25vw),
    linear-gradient(180deg, #050709 0%, #101010 100%);
  color: #fff;
  padding: 13vw 0;
  position: relative;
  z-index: 2;
}

.specs-title {
  margin-bottom: -1vw;
}

.specs-title h2 {
  color: #fff;
  font-size: clamp(4.5rem, 21vw, 13rem);
  line-height: .96;
}

.specs-title h2 + h2 {
  color: var(--brass);
  margin-top: .02em;
}

.specs-layout {
  display: grid;
  gap: 8vw;
  padding: 2vw var(--gutter) 0;
  width: calc(100% - 9vw);
}

.specs-board {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.metric {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  min-height: 170px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.metric::after {
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent);
  content: "";
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity .3s ease;
}

.metric:hover::after {
  opacity: 1;
}

.metric span {
  color: var(--brass);
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 72px;
  line-height: 68px;
}

.metric p {
  color: var(--white-muted);
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 16px;
  line-height: 23px;
  margin-top: 18px;
  max-width: 320px;
}

.metric-feature {
  background: var(--blue);
}

.metric-feature span {
  color: #fff;
  font-size: 108px;
  line-height: 96px;
}

.specs-copy h3 {
  color: #fff;
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 34px;
  line-height: 38px;
}

.specs-copy p {
  color: var(--white-muted);
}

.specs-image img {
  border: 1px solid rgba(255,255,255,.2);
  width: 100%;
}

.specs-image figcaption {
  color: var(--white-muted);
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 13px;
  line-height: 18px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .specs {
    padding: 9vw 0;
  }

  .specs-title h2 {
    font-size: clamp(7rem, 12.5vw, 13rem);
    line-height: .94;
  }

  .specs-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 6vw;
  }

  .specs-board {
    grid-template-columns: repeat(2, 1fr);
    grid-row: span 2;
  }

  .metric-feature {
    grid-row: span 2;
    min-height: 360px;
  }

  .specs-image {
    grid-column: 2;
  }
}

.spec-table-wrap {
  margin: 8vw var(--gutter) 0;
  overflow-x: auto;
  width: calc(100% - 9vw);
}

.spec-table {
  color: #fff;
  font-family: 'Suisse Yamaha', sans-serif;
  min-width: 720px;
  width: 100%;
}

.spec-table caption {
  color: var(--white-muted);
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 18px;
  text-align: left;
}

.spec-table th,
.spec-table td {
  border-top: 1px solid rgba(255,255,255,.24);
  font-size: 17px;
  line-height: 25px;
  padding: 18px 16px 18px 0;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  color: var(--brass);
  font-weight: 700;
  width: 26%;
}

.spec-table td {
  color: rgba(255,255,255,.78);
}

@media (max-width: 767px) {
  .spec-table-wrap {
    overflow: visible;
  }

  .spec-table {
    min-width: 0;
  }

  .spec-table caption,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: auto;
  }

  .spec-table caption {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 14px;
  }

  .spec-table tr {
    border-top: 1px solid rgba(255,255,255,.24);
    padding: 14px 0;
  }

  .spec-table th,
  .spec-table td {
    border-top: 0;
    font-size: 15px;
    line-height: 22px;
    padding: 0;
  }

  .spec-table td {
    margin-top: 8px;
  }
}

/* ===== GALLERY ===== */
.gallery {
  background: var(--paper);
  padding: 14vw 0;
  position: relative;
  z-index: 2;
}

.gallery-title {
  margin-bottom: -5vw;
  padding-bottom: 13vw;
}

.gallery-title h2 {
  color: var(--ink);
  font-size: clamp(4.4rem, 20vw, 12.5rem);
  line-height: .96;
}

.gallery-title h2 + h2 {
  color: var(--red);
  margin-top: .02em;
}

.works-list {
  display: grid;
  gap: 9vw;
  padding: 0 var(--gutter);
  width: calc(100% - 9vw);
}

.work-card a {
  color: var(--ink);
  display: block;
  text-decoration: none;
  transform: rotate(0deg);
  transition: transform .4s var(--ease);
}

.work-card a:hover {
  transform: rotate(2.5deg) scale(1.015);
}

.work-card:nth-child(even) a:hover {
  transform: rotate(-2deg) scale(1.015);
}

.work-card img {
  height: auto;
  width: 100%;
}

.work-card-wide img {
  aspect-ratio: 2 / 1;
}

.work-card p {
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 15px;
  line-height: 21px;
  margin-top: 12px;
}

.work-card p:first-of-type {
  color: var(--ink);
  font-size: 20px;
  line-height: 26px;
}

.work-card p + p {
  color: var(--muted);
  margin-top: 3px;
}

@media (min-width: 768px) {
  .gallery {
    padding: 8vw 0 9vw;
  }

  .gallery-title h2 {
    font-size: clamp(6.5rem, 11vw, 12rem);
    line-height: .94;
  }

  .works-list {
    align-items: start;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5vw 4.5vw;
  }

  .work-card:nth-child(2n) {
    margin-top: 8vw;
  }

  .work-card-featured {
    width: 93%;
  }

  .work-card-wide {
    grid-column: 1 / -1;
    width: 78%;
  }

  .work-card p {
    font-size: 20px;
    line-height: 26px;
    margin-top: 24px;
  }

  .work-card p:first-of-type {
    font-size: 30px;
    line-height: 35px;
  }
}

/* ===== CUSTOM ===== */
.custom {
  background:
    linear-gradient(90deg, rgba(18,60,255,.88), rgba(5,7,9,.9)),
    var(--blue-deep);
  color: #fff;
  overflow: hidden;
  padding: 13vw var(--gutter);
  position: relative;
  z-index: 2;
}

.custom::after {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
  height: 70vw;
  position: absolute;
  right: -28vw;
  top: 6vw;
  width: 70vw;
}

.custom-heading,
.custom-layout,
.custom-cards {
  position: relative;
  z-index: 2;
}

.custom-heading h2 {
  color: #fff;
  max-width: 1100px;
}

.custom-layout {
  display: grid;
  gap: 6vw;
  margin-top: 7vw;
}

.custom-copy p {
  color: rgba(255,255,255,.82);
}

.custom-copy p:first-child {
  color: #fff;
  font-size: 23px;
  line-height: 34px;
}

.custom-cards {
  display: grid;
  gap: 16px;
  margin-top: 8vw;
}

.custom-card {
  border: 1px solid rgba(255,255,255,.24);
  min-height: 250px;
  padding: 20px;
}

.custom-card span {
  color: var(--brass);
  display: block;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 54px;
  line-height: 52px;
  margin-bottom: 24px;
}

.custom-card h3 {
  color: #fff;
}

.custom-card p {
  color: var(--white-muted);
  margin-top: 14px;
}

@media (min-width: 768px) {
  .custom {
    padding: 9vw var(--gutter);
  }

  .custom-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1.1fr) minmax(290px, .72fr);
  }

  .custom-cards {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 6vw;
  }
}

/* ===== INSPECTION ===== */
.inspection {
  background:
    radial-gradient(circle at 18% 6%, rgba(18,60,255,.07), transparent 38vw),
    radial-gradient(circle at 92% 84%, rgba(168,45,39,.05), transparent 32vw),
    var(--paper-deep);
  color: var(--ink);
  padding: 14vw 0 12vw;
  position: relative;
  z-index: 2;
}

.inspection .animated-titles h2 {
  color: var(--ink);
  font-size: clamp(4.4rem, 20vw, 12.5rem);
  line-height: .96;
}

.inspection .animated-titles h2 + h2 {
  color: var(--blue);
  margin-top: .02em;
}

.inspection-lead {
  color: var(--ink);
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 21px;
  line-height: 31px;
  margin-left: auto;
  padding: 2vw var(--gutter) 8vw;
}

.inspection-grid {
  display: grid;
  gap: 7vw;
  padding: 0 var(--gutter);
  width: calc(100% - 9vw);
}

.inspection-list {
  display: grid;
  gap: 18px;
}

.inspection-item {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.inspection-item span {
  color: var(--red);
  display: block;
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.inspection-item p {
  margin-top: 12px;
}

@media (min-width: 768px) {
  .inspection {
    padding: 9vw 0;
  }

  .inspection .animated-titles h2 {
    font-size: clamp(7rem, 12.5vw, 13rem);
    line-height: .94;
  }

  .inspection-lead {
    font-size: 30px;
    line-height: 40px;
    padding-right: 12vw;
    width: calc(55% - 9vw);
  }

  .inspection-grid {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  }
}

/* ===== NOTES ===== */
.notes {
  background: var(--paper-2);
  padding: 12vw var(--gutter);
  position: relative;
  z-index: 2;
}

.notes-copy {
  margin-left: auto;
}

@media (min-width: 768px) {
  .notes {
    padding: 8vw var(--gutter);
  }

  .notes-copy {
    width: 62%;
  }
}

/* ===== FOOTER / CTA ===== */
.email-me {
  background:
    radial-gradient(circle at 80% 12%, rgba(18,60,255,.42), transparent 24vw),
    linear-gradient(180deg, #080808 0%, #000 100%);
  color: #fff;
  contain: layout paint;
  min-height: 100vh;
  min-height: 100svh;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}

.email-me-title {
  max-width: calc(100% - 9vw);
  overflow: hidden;
  display: inline-flex;
  flex-direction: column;
  padding-top: 7vw;
  text-decoration: none;
  transform: translateY(22vw);
  width: auto;
}

.email-me-title h2 {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 20vw, 12.5rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: .96;
  pointer-events: none;
  text-wrap: balance;
}

.email-me-title h2:last-of-type {
  color: var(--brass);
  margin-top: .02em;
}

@media (min-width: 768px) {
  .email-me-title {
    transform: translateY(-1vw);
  }

  .email-me-title h2 {
    font-size: clamp(6.5rem, 11vw, 12rem);
    line-height: .94;
  }

  .email-me-title h2:last-of-type {
    margin-top: .02em;
  }
}

.email-me-banner {
  background-color: var(--brass);
  bottom: 0;
  color: var(--black);
  contain: layout paint;
  font-family: 'Suisse Yamaha', sans-serif;
  font-size: 18px;
  height: calc(52px + env(safe-area-inset-bottom));
  left: 0;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 100%;
}

.email-me-banner-container {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.email-me-banner-content {
  align-items: center;
  animation: banner 9s linear infinite;
  color: var(--black);
  display: flex;
  height: 100%;
  min-height: 52px;
  position: absolute;
  left: 0;
  top: 0;
  text-decoration: none;
  width: fit-content;
  will-change: transform;
}

.email-me-banner-content > img {
  display: block;
  height: 24px;
  margin: 0 2vw;
  width: 24px;
}

.email-me-banner-content > div {
  margin: 0 2vw;
}

.email-me-banner-content > span {
  border: 1px solid var(--black);
  border-radius: 3vw;
  display: inline-block;
  margin: 0 2vw;
  padding: 0 1.5vw;
}

@media (min-width: 768px) {
  .email-me-banner {
    font-size: 38px;
    height: 82px;
  }

  .email-me-banner-content > img {
    height: 45px;
    margin: 0 1vw;
    width: 45px;
  }

  .email-me-banner-content > div,
  .email-me-banner-content > span {
    margin: 0 1vw;
  }

  .email-me-banner-content > span {
    border-width: 2px;
  }
}

@keyframes banner {
  to {
    transform: translate3d(-33.33%, 0, 0);
  }
}

.email-me-links {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: 'Suisse Yamaha', sans-serif;
  position: absolute;
  bottom: calc(84px + env(safe-area-inset-bottom));
  right: 9vw;
}

.email-me-links p {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 0;
}

.email-me-links a {
  align-items: center;
  color: #fff;
  display: inline-flex;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 2px;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (min-width: 768px) {
  .email-me-links {
    bottom: 110px;
  }

  .email-me-links p {
    font-size: 30px;
    line-height: 40px;
  }

  .email-me-links a {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
  }
}

/* ===== MOBILE POLISH ===== */
@media (max-width: 767px) {
  .email-me-title h2 {
    font-size: clamp(4rem, 18vw, 5.4rem);
    line-height: .98;
  }

  .email-me-title h2:last-of-type {
    margin-top: .02em;
  }

  .data-wall .animated-titles h2 {
    font-size: clamp(4rem, 17vw, 5.5rem);
    line-height: .98;
  }

  .data-wall .animated-titles h2 + h2 {
    margin-top: .02em;
  }

  .specs-title h2 {
    font-size: clamp(4rem, 17vw, 5.5rem);
    line-height: .98;
  }

  .specs-title h2 + h2 {
    margin-top: .02em;
  }

  .gallery-title h2 {
    font-size: clamp(3.8rem, 16vw, 5.3rem);
    line-height: .98;
  }

  .gallery-title h2 + h2 {
    margin-top: .02em;
  }

  .inspection .animated-titles h2 {
    font-size: clamp(4rem, 17vw, 5.5rem);
    line-height: .98;
  }

  .inspection .animated-titles h2 + h2 {
    margin-top: .02em;
  }

  .main-navigation {
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: 12px;
  }

  .main-navigation ul {
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
    mask-image: linear-gradient(90deg, #000 92%, transparent);
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .main-navigation ul::-webkit-scrollbar {
    display: none;
  }

  .main-navigation ul li {
    flex: 0 0 auto;
  }

  .main-navigation ul li:last-child {
    flex: 0 0 auto;
    padding-right: 8vw;
    text-align: left;
  }

  .story-copy h2,
  .custom-heading h2,
  .notes-copy h2 {
    font-size: clamp(3rem, 12vw, 4.8rem);
    line-height: 1.04;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal,
  .is-js .animated-titles-text {
    opacity: 1 !important;
    transform: none !important;
  }
}
