@use postcss-preset-env {
  stage: 0;
}

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background-color: var(--background-light);
  color: var(--text-primary);
  font-family: 'InterVariable', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.322px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}




.noise {
  filter: url(#n1)
}


.handwriting {
  font-family: 'Gochi Hand', cursive;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 18px;
}

.img-caption {
  display: flex;
  align-items: first baseline;
  justify-content: space-between;
  padding-top: 0.25rem;
  padding-bottom: 1.5rem;
  gap: 10%;
}

.img-caption span {
  color: var(--text-secondary);
}

.img-caption a {
  color: var(--text-tertiary);
}

.grid-img {
  padding: 0.2rem 0;
}

/* ── Album design tokens (dark default, light override) ───────────────── */

:root {
  --grid-min: 220px;

  /* Dark mode (default) */
  --text-primary: #e8e9eb;
  --text-secondary: #8a8e91;
  --text-tertiary: #5a5e60;
  --background-light: #161718;
  --background: #1f2123;
  --underline: #4a4e51;
  --underline-active: #6a6e71;
}

/* Grid size mapping — desktop defaults */
html[data-size="150"] { --grid-min: 150px; }
html[data-size="220"] { --grid-min: 220px; }
html[data-size="320"] { --grid-min: 320px; }

/* Smaller equivalents on mobile, where viewport width is tight */
@media (max-width: 991px) {
  html[data-size="150"] { --grid-min: 100px; }
  html[data-size="220"] { --grid-min: 150px; }
  html[data-size="320"] { --grid-min: 220px; }
}

html[data-theme="light"] {
  --text-primary: #3d4142;
  --text-secondary: #8a8e91;
  --text-tertiary: #bbc1c3;
  --background-light: #FCFDFD;
  --background: #F7F8F8;
  --underline: #adb2b4;
  --underline-active: #bec3c7;
}

.view-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin: 1.5rem 0 1.25rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.view-controls .size-control {
  margin-left: auto;
  text-align: right;
}

/* Default: hide the mobile label */
.size-label-mobile {
  display: none;
}

@media (max-width: 991px) {
  /* Hide the light/dark toggle — desktop-only feature */
  .theme-control {
    display: none;
  }

  /* Hide the list/grid view toggle — mobile only shows sizes */
  .view-toggle {
    display: none;
  }

  /* Swap the size-control label: "size" → "view as" */
  .size-label-desktop {
    display: none;
  }
  .size-label-mobile {
    display: inline;
  }

  /* Always show the size-control on mobile, even if data-view is "list" */
  html[data-view="list"] .size-control {
    display: inline;
  }

  /* Left-align since size-control is now the only toggle on this row */
  .view-controls .size-control {
    margin-left: 0;
    text-align: left;
  }

  /* Mobile hides the list/grid toggle and always shows the justified grid, so
     force list view to adopt the grid layout too. (Justified-rows styles live
     in a dedicated @media block below, after the desktop grid rules, so they
     win the cascade over the desktop list rules.) */

  /* Per-tile view-transitions OFF on mobile: the pinch resize cross-fades the
     surrounding photos (anchored on the focal photo via scroll) rather than
     flying each tile to a new spot. */
  .photo-item {
    view-transition-name: none !important;
  }
}

.view-toggle,
.size-control,
.theme-control {
  color: var(--text-secondary);
}

.view-link,
.size-link,
.theme-link {
  color: var(--text-secondary);
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--underline);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .25s ease, text-decoration-color .25s ease;
}

.view-link:hover,
.size-link:hover,
.theme-link:hover {
  color: var(--text-primary);
  text-decoration-color: var(--underline-active);
}

html[data-view="list"] .view-link[data-view="list"],
html[data-view="grid"] .view-link[data-view="grid"],
html[data-view="masonry"] .view-link[data-view="masonry"],
html[data-size="150"] .size-link[data-size="150"],
html[data-size="220"] .size-link[data-size="220"],
html[data-size="320"] .size-link[data-size="320"],
html[data-theme="light"] .theme-link[data-theme="light"],
html[data-theme="dark"] .theme-link[data-theme="dark"] {
  color: var(--text-primary);
}

/* Hide the size control entirely in list view — has no effect there */
html[data-view="list"] .size-control {
  display: none;
}

/* Mobile-default: shell flows in normal document flow */
.album-shell {
  padding: 1.5rem;
}

@media (min-width: 992px) {
  /* App-shell: lock the page, sidebar is fixed-width, main scrolls internally */
  html, body {
    height: 100%;
    overflow: hidden;
  }

  .album-shell {
    display: flex;
    height: 100vh;
    padding: 0;
  }

  .album-sidebar {
    box-sizing: border-box;
    flex-shrink: 0;
    width: 280px;
    height: 100vh;
    overflow-y: auto;
    padding: 2.5rem 2rem 2.5rem 3rem;
    display: flex;
    flex-direction: column;
  }

  .album-sidebar h1 {
    margin-top: 0;
  }

  .album-sidebar .view-controls {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.35rem;
    margin: 1.25rem 0 0;
  }

  .album-sidebar .view-controls .size-control {
    margin-left: 0;
    text-align: left;
  }

  .album-sidebar .theme-control {
    margin-top: auto;
    padding-top: 2rem;
  }

  .album-main {
    box-sizing: border-box;
    flex: 1;
    height: 100vh;
    overflow-y: auto;
    padding: 2.5rem 3rem 5rem;
  }

  /* List view — cap photo width inside the scrollable column */
  html[data-view="list"] .photo-item {
    max-width: 720px;
  }
}

/* Base: each photo + caption pair. (No scroll-reveal — tiles show immediately.) */
.photo-item {
  opacity: 1;
}

.photo-item .grid-img {
  transition: transform .4s ease, filter .4s ease;
}

.photo-item:hover .grid-img {
  transform: scale(1.008);
  filter: brightness(1.03);
}

/* List view — single column, original aspect ratios (current behavior) */
html[data-view="list"] .gallery {
  display: block;
}

/* Grid view — uniform tiles, cropped to square */
html[data-view="grid"] .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--grid-min), 1fr));
  gap: 1.5rem 1rem;
}

html[data-view="grid"] .photo-item {
  display: flex;
  flex-direction: column;
}

html[data-view="grid"] .photo-item a.spotlight {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
}

html[data-view="grid"] .grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
  display: block;
}

html[data-view="grid"] .img-caption {
  padding-top: 0.4rem;
  padding-bottom: 0;
  gap: 5%;
}

html[data-view="grid"] .handwriting {
  font-size: 1rem;
}

/* Grid view — justified rows. Photos keep their true aspect ratios and read
   left-to-right, row by row, each row scaled to fill the column width (like a
   contact sheet). Row breaks, per-photo widths, and per-row heights are
   computed in album-view.js; the styles here only set up the flex container —
   the `gap`'s column value is the source of truth the layout engine reads. */
html[data-view="masonry"] .gallery {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem 12px;
}

html[data-view="masonry"] .photo-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
  /* width is set inline, per photo, by the layout engine */
}

html[data-view="masonry"] .photo-item a.spotlight {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  /* height is set inline, per row, by the layout engine */
}

html[data-view="masonry"] .grid-img {
  width: 100%;
  height: 100%;
  /* The box matches each photo's aspect ratio, so cover never visibly crops. */
  object-fit: cover;
  padding: 0;
  display: block;
}

html[data-view="masonry"] .img-caption {
  padding-top: 0.35rem;
  padding-bottom: 0;
}

html[data-view="masonry"] .handwriting {
  font-size: 1rem;
}

/* Mobile forces the justified grid for every saved view. Placed after the
   desktop grid + list rules so it wins the cascade (equal specificity). */
@media (max-width: 991px) {
  html[data-view="list"] .gallery {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 1rem 10px;
  }

  html[data-view="list"] .photo-item {
    display: flex;
    flex-direction: column;
    max-width: none;
    margin-bottom: 0;
  }

  html[data-view="list"] .photo-item a.spotlight {
    display: block;
    overflow: hidden;
    border-radius: 2px;
  }

  html[data-view="list"] .grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 0;
    display: block;
  }

  html[data-view="list"] .img-caption {
    padding-top: 0.35rem;
    padding-bottom: 0;
  }
}

/* View Transition tuning — gentle crossfade/scale between modes */
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.45s;
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}

/* ── Lightbox ─────────────────────────────────────────────────────────────
   The clicked photo lifts into .lb__img and springs from its tile to a
   centered view, while the grid (.album-shell) blooms outward from the click
   point and fades to the album background — one motion, driven by JS. */
.lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  /* The whole overlay handles touch gestures (swipe-anywhere), so suppress the
     browser's own scroll/zoom across it. */
  touch-action: none;
}

/* Fully removed when closed so the fixed .lb__img can't linger/stick on screen
   while the grid scrolls behind it. */
.lb:not(.is-open) {
  display: none;
}

.lb.is-open {
  pointer-events: auto;
}

.lb__bg {
  position: absolute;
  inset: 0;
  background: var(--background-light);
  opacity: 0;
}

.lb__img {
  position: fixed;
  margin: 0;
  display: block;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.42);
  transform-origin: center center;
  cursor: zoom-out;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
  /* Allow the iOS long-press "Save Image" sheet on the open photo. */
  -webkit-touch-callout: default;
  touch-action: none;
}

/* Promote the moving layers only while actually open (avoids leftover GPU
   layers that can ghost on mobile after dismissing). */
.lb.is-open .lb__img,
.lb.is-open .lb__ghost {
  will-change: transform;
}
.lb.is-open .lb__bg {
  will-change: opacity;
}

/* Outgoing frame during prev/next — slides away while the new one fades in. */
.lb__ghost {
  pointer-events: none;
}

/* High-res loading indicator — a small ring, top-right, while the sharp image
   decodes. The cached thumbnail stays up the whole time (no blank/flash). */
.lb__spinner {
  position: fixed;
  top: 22px;
  left: 22px;          /* JS repositions to the open image's top-right corner */
  width: 18px;
  height: 18px;
  border-radius: 50%;
  /* White ring + shadow so it reads on a light or dark photo. */
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.lb__spinner.is-loading {
  opacity: 0.85;
  animation: lb-spin .7s linear infinite;
}

@keyframes lb-spin {
  to { transform: rotate(360deg); }
}

.lb__caption {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 22px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
}

.lb__caption .handwriting {
  font-size: 18px;
}

.lb__btn {
  position: fixed;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  /* Solid translucent (no backdrop-filter — its live blur janks Firefox while
     the grid animates behind the lightbox). */
  background: color-mix(in srgb, var(--background) 88%, transparent);
  color: var(--text-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.lb__btn:hover {
  background: var(--background);
}

.lb__close { top: 20px; right: 20px; }
.lb__prev { left: 20px; top: 50%; margin-top: -22px; }
.lb__next { right: 20px; top: 50%; margin-top: -22px; }
.lb__prev:hover { transform: translateX(-2px); }
.lb__next:hover { transform: translateX(2px); }

/* Lock the page under an open lightbox (desktop already hides overflow). */
html[data-lb="open"],
html[data-lb="open"] body {
  overflow: hidden;
}

/* While open, the grid tiles + sidebar are transform/opacity-driven per frame
   by the lightbox. Suppress their scroll-reveal transition so each frame lands
   instantly, promote them to layers for a smooth GPU push, and clip the main
   column so pushed tiles can't spawn scrollbars. */
html[data-lb="open"] .photo-item {
  transition: none !important;
  will-change: transform, opacity;
}
html[data-lb="open"] .album-main {
  overflow: hidden;
}
html[data-lb="open"] .album-sidebar {
  will-change: transform, opacity;
}

@media (max-width: 991px) {
  /* Touch uses swipe for prev/next, so hide the side arrows. */
  .lb__prev,
  .lb__next {
    display: none;
  }
  .lb__caption {
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb__img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .photo-item:hover .grid-img {
    transform: none;
  }
}

ul {
  padding-left: 1.5rem;
}

li {
  padding-bottom: 0.1rem;
}

li::marker {
  color: var(--text-secondary);
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
}

html.w-mod-touch * {
  background-attachment: scroll !important;
}

.w-inline-block {
  max-width: 100%;
  display: inline-block;
}

.w-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 940px;
}

.w-container:before,
.w-container:after {
  content: " ";
  display: table;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
}

.w-container:after {
  clear: both;
}

.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}

@media screen and (max-width: 991px) {
  .w-container {
    max-width: 728px;
  }

}

@media screen and (max-width: 767px) {

  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  font-family: 'InterVariable', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.46px;
  line-height: 16px;
  margin-top: 1.5rem;
  margin-bottom: 16px;
}

.album-date {
  font-family: 'Gochi Hand', cursive;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0;
  line-height: 20px;
  margin: 0 0 1rem 0;
}

h2 {
  font-family: 'InterVariable', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: -0.322px;
  line-height: 20px;
  margin-top: 20px;
  margin-bottom: 10px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

p {
  margin-bottom: 10px;
  /* text-align: center; */

}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--underline);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition: color .3s, text-decoration-color .3s;
}

a:hover {
  color: var(--text-primary);
  text-decoration-color: var(--underline-active);
}

figcaption {
  color: var(--text-secondary);
  text-align: center;
  margin-top: 5px;
  font-size: 12px;
  line-height: 16px;
}

.card-grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template: "Area"
    "."
    / 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: stretch;
  margin-bottom: 3rem;
  display: grid;
}

.card {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  /* background-color: #ffd500; */
  border-radius: 0;
  flex-flow: column;
  padding: 4rem 2rem 1rem;
  text-decoration: none;
  transition: all .25s;
  display: grid;
  background-position: center;
  background-size: cover;
  align-items: center;
  justify-items: center;
  font-family: neue-haas-grotesk-display, sans-serif;
  height: 650px;
  display: flex;
  transition: filter 0.3s ease;
  background: var(--bg);
  background-size: cover;
  position: relative;
  z-index: 0;

}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0;

  /* 20% black overlay */
  z-index: 1;
  transition: opacity 0.4s ease;
}

.card>* {
  position: relative;
  z-index: 2;
}

.card:hover::before {
  opacity: 0.15;
}

.card-title {
  color: var(--text-primary);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.5rem;
  text-decoration: none;
}

.card-subtitle {
  color: var(--text-primary);
  opacity: 0.75;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: none;
}

.card-head-container {
  justify-content: flex-start;
  align-items: center;
}

.card-container {
  max-width: 1060px;
  padding-top: 2rem;
}

.container {
  max-width: 36rem;
  padding: 5rem 1rem 33.3vh;
}

figure {
  margin: 0;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
}

.image-inline {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: inline-block;
  background-color: var(--background);
}

.image-inline.border {
  /* border: 1.5px solid #d9d6d0; */
  border-radius: 6px;
}

iframe {
  border-radius: 6px;
  background-color: var(--background);
  width: 100%;
}


.padded {
  padding: 1rem;
  background-color: var(--background);
  border-radius: 6px;

}

.padded.x2 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: var(--background);
  border-radius: 6px;

}


.phone-container {
  background-color: var(--background);
  border: 2px solid var(--text-primary);
  border-radius: .7rem;
  justify-content: center;
  align-items: center;
  height: 28rem;
  padding: 1rem 3rem;
  display: flex;
  overflow: hidden;
}

.phone-image {
  height: 100%;
}

.back {
  color: var(--text-secondary);
  transition: all .2s;
  text-decoration: none;
}

.back:hover {
  color: var(--text-primary);
}

.quote {
  font-style: italic;
  color: var(--text-secondary);
}

.quote.attr {
  font-style: italic;
  color: var(--text-primary);
}

.brackets {
  margin: 1rem;
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  padding-bottom: 1rem;
}



@media screen and (max-width: 767px) {
  .card-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .card {
    height: 470px;
  }

  .container {
    padding-top: 2rem;
  }

  .card-container {
    padding-top: 0;
  }

  .nav {
    padding: 2rem;
  }

  .container {
    padding-bottom: 10vh;
  }

}


@media screen and (max-width: 479px) {
  .card-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}

#w-node-_107a06ac-9c66-216b-66d3-53c2207e7069-3ec7a1df {
  grid-area: Area;
}




@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Medium.otf') format('opentype'), url('../fonts/HelveticaNowDisplay-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay extblk';
  src: url('../fonts/HelveticaNowDisplay-ExtBlk.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay extlt';
  src: url('../fonts/HelveticaNowDisplay-ExtLt.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-ExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-BoldIta.otf') format('opentype'), url('../fonts/HelveticaNowDisplay-BoldIta.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay hairline';
  src: url('../fonts/HelveticaNowDisplay-Hairline.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-Thin.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-BlackIta.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay extblkita';
  src: url('../fonts/HelveticaNowDisplay-ExtBlkIta.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay extbdita';
  src: url('../fonts/HelveticaNowDisplay-ExtBdIta.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-ThinIta.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay extltita';
  src: url('../fonts/HelveticaNowDisplay-ExtLtIta.otf') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-RegIta.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-LightIta.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Helveticanowdisplay';
  src: url('../fonts/HelveticaNowDisplay-MedIta.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}