/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
}
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

a:focus-visible,
button:focus-visible,
.clickable:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

/* Global effects */
.page_noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.custom_cursor {
  position: fixed;
  z-index: 1000;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--highlight);
  font-size: 10px;
  font-weight: 900;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
}
.custom_cursor.show { transform: translate(-50%, -50%) scale(0.7); }
.custom_cursor.show.interactive {
  background: transparent !important;
  color: transparent !important;
  border: 2px solid #111111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85);
  transform: translate(-50%, -50%) scale(1.15);
}

/* Site header */
.header_blur {
  position: fixed;
  inset: 0 0 auto;
  z-index: 99;
  height: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(var(--header-blur)) saturate(1.15);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.15);
  pointer-events: none;
}
.site_header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: start;
  padding: 15px var(--side-padding);
  background: transparent;
  color: #ffffff;
  mix-blend-mode: difference;
  filter: grayscale(1) contrast(100);
}
.site_logo {
  width: max-content;
  height: auto;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.12em;
}
.header_info {
  font-size: 9px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
}
.menu_button {
  border: 0;
  background: none;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.site_menu {
  position: fixed;
  top: 52px;
  right: var(--side-padding);
  display: grid;
  gap: 0;
  text-align: right;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: 0.25s;
}
.site_menu.is_open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.site_menu a {
  display: block;
  padding: 0.08em 0 0.12em;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

/* Landing */
.landing_section {
  height: 100vh;
  height: 100svh;
  min-height: min(620px, 100svh);
  display: grid;
  grid-template-rows: minmax(0, 1fr) var(--ticker-height);
  overflow: hidden;
}
.landing_content {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}
.hero_intro {
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 84px var(--side-padding) 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.hero_intro::before {
  content: "";
  position: absolute;
  top: 17%;
  right: 8%;
  width: 18vw;
  aspect-ratio: 1;
  border: 1px solid var(--text);
  border-radius: 50%;
  opacity: 0.25;
}
.section_label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero_intro h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(64px, 6.4vw, 92px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero_intro h1 span { display: block; }
.hero_intro h1 span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text);
}
.intro_arrow {
  width: 100px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--text);
  border-radius: 50%;
  background: var(--highlight);
  color: var(--dark-text);
  font-family: var(--font-body);
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-45deg);
  transition: transform 0.25s, background 0.25s, color 0.25s;
}
.intro_arrow:hover {
  background: var(--text);
  color: var(--highlight);
  transform: rotate(0deg);
}
.display_serif {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.08em;
  text-transform: none;
}
.intro_footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 20px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}
.intro_footer > a:not(.intro_arrow) {
  white-space: nowrap;
}
.project_count {
  display: grid;
  grid-template-columns: auto;
  gap: 5px;
  align-items: start;
  white-space: nowrap;
}
.project_count strong {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.72;
}
.project_count span {
  font-size: 7px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.08em;
}

/* Featured projects */
.featured_projects {
  --cursor-color: #ff2b8a;
  --cursor-text: #111111;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 70px 18px 16px;
  background: var(--dark-background);
  color: var(--dark-text);
  overflow: hidden;
}
.featured_header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 18px;
  align-items: end;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}
.featured_header h2 {
  grid-column: 1 / 3;
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.featured_header h2 em {
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: none;
}
.featured_header > p:last-child {
  max-width: 270px;
  justify-self: end;
  font-size: 8px;
  line-height: 1.55;
  text-transform: uppercase;
}
.featured_grid {
  position: relative;
  min-height: 0;
  height: 100%;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.featured_card {
  position: absolute;
  width: 240px;
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  padding: 5px;
  background: var(--dark-text);
  color: var(--text);
  transform-origin: center;
  transition: scale 0.35s ease;
}
.featured_card:nth-child(1) { left: 5%; top: 6%; transform: rotate(-3deg); }
.featured_card:nth-child(2) { right: 7%; top: 11%; transform: rotate(3deg); }
.featured_card:nth-child(3) { left: 22%; bottom: 8%; transform: rotate(2deg); }
.featured_card:nth-child(4) { right: 16%; bottom: 6%; transform: rotate(-4deg); }
.featured_card.clickable { cursor: pointer; }
.featured_card.clickable:hover {
  z-index: 2;
  scale: 1.035;
}
.featured_card.clickable:nth-child(1):hover { transform: rotate(-6deg) translateY(-6px); }
.featured_card.clickable:nth-child(2):hover { transform: rotate(6deg) translateY(-6px); }
.featured_card.clickable:nth-child(3):hover { transform: rotate(5deg) translateY(-6px); }
.featured_card.clickable:nth-child(4):hover { transform: rotate(-7deg) translateY(-6px); }
.featured_image {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background: var(--about-background);
  contain: paint;
}
.featured_image > * {
  max-width: 100%;
  transform-origin: center;
  transition: transform 0.5s ease;
}
.featured_card_meta {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.featured_card h3 {
  margin-top: 6px;
  font-size: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

/* Information ticker */
.info_ticker {
  height: var(--ticker-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  background: var(--highlight);
  color: var(--dark-text);
}
.ticker_track {
  display: flex;
  width: max-content;
  animation: ticker_move 22s linear infinite;
  animation-play-state: running;
}
.info_ticker:hover .ticker_track,
.info_ticker:focus-within .ticker_track {
  animation-play-state: paused;
}
.ticker_track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 5px 28px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.06em;
  white-space: nowrap;
}
.ticker_track i {
  font-size: 0.55em;
  font-style: normal;
}
@keyframes ticker_move {
  to { transform: translateX(-50%); }
}

/* Project previews */
.website_preview {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 25%, transparent 25%) 0 0 / 18px 18px,
    #111;
}
.website_preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.website_preview_label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  padding: 5px 7px;
  background: #111111;
  color: #ffffff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}
.coming_soon_preview {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  background:
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(23, 23, 23, 0.08) 18px 19px),
    var(--background);
}
.coming_soon_preview span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.coming_soon_preview strong {
  font-size: 68px;
  line-height: 0.8;
  letter-spacing: -0.09em;
}
.coming_soon_preview i {
  align-self: flex-end;
  font-family: var(--font-display);
  font-size: 25px;
  font-style: normal;
}
.featured_image .coming_soon_preview { padding: 7px; }
.featured_image .coming_soon_preview strong { font-size: 44px; }

/* Project categories */
.project_sections {
  padding: 80px var(--side-padding) 0;
  border-bottom: 1px solid var(--line);
}
.projects_header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}
.projects_header h2,
.about_section h2 {
  font-size: clamp(72px, 7.7vw, 110px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.about_section h2 {
  font-family: var(--font-display);
  font-size: clamp(86px, 7.5vw, 132px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.045em;
}
.projects_header sup {
  margin-left: 8px;
  font-size: 12px;
  letter-spacing: 0;
  vertical-align: top;
}
.category_links {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
}
.category_links a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid var(--text);
  border-radius: 99px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.2s;
}
.category_links a:hover {
  background: var(--text);
  color: var(--background);
}
.category_list {
  display: grid;
  gap: 0;
  margin: 0 calc(var(--side-padding) * -1);
}
.category_section {
  --section-text: #111111;
  padding: 68px var(--side-padding) 78px;
  color: var(--section-text);
  scroll-margin-top: 70px;
}
.category_section + .category_section {
  border-top: 2px solid var(--section-text);
}
#shopping {
  --cursor-color: #ff2400;
  --cursor-text: #ffffff;
  background: #2cff05;
}
#redesign {
  --cursor-color: #ff2400;
  --cursor-text: #ffffff;
  background: #00f0ff;
}
#team {
  --section-text: #ffffff;
  --cursor-color: #2cff05;
  --cursor-text: #111111;
  background: #5a5a5a;
}
#personal {
  --cursor-color: #2cff05;
  --cursor-text: #111111;
  background: #ff2400;
}
.category_header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: end;
  padding: 13px 0;
  margin-bottom: 24px;
  border-top: 1px solid var(--section-text);
  border-bottom: 1px solid var(--section-text);
}
.category_header h3 {
  grid-column: 1;
  text-align: left;
  font-size: 60px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.category_header p {
  grid-column: 1;
  grid-row: 2;
  max-width: 340px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}
.category_header i {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  font-size: 9px;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 0.1em;
}
.project_slider { overflow: hidden; }
.project_grid { align-items: stretch; }
.project_card {
  min-width: 0;
  height: auto;
  display: flex;
  flex-direction: column;
}
.project_preview {
  position: relative;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  background: var(--about-background);
  border: 1px solid var(--section-text);
  contain: paint;
}
.project_preview_link {
  display: block;
  color: inherit;
}
.project_preview > * {
  transform-origin: center;
  transition: transform 0.55s ease;
}
.project_info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: minmax(68px, auto) auto 1fr auto;
  min-height: 190px;
  gap: 10px 20px;
  padding: 14px 4px 8px;
  margin-top: 16px;
  border-top: 1px solid var(--section-text);
  transform: none;
}
.project_info h3 {
  align-self: start;
  font-size: 34px;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.project_info p {
  grid-column: 1;
  grid-row: 2;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}
.project_info span {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}
.project_actions {
  grid-column: 1 / 3;
  grid-row: 4;
  align-self: end;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 5px;
}
.project_info_button,
.project_website_link {
  display: grid;
  place-items: center;
  min-width: 150px;
  padding: 10px 14px;
  border: 1px solid var(--section-text);
  border-radius: 999px;
  background: transparent;
  color: var(--section-text);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, transform 0.2s;
}
.project_info_button:hover,
.project_website_link:hover {
  background: var(--section-text);
  color: var(--background);
  transform: translateX(2px);
}
.project_controls {
  display: grid;
  grid-template-columns: 42px minmax(80px, 1fr) auto 42px;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  margin-top: 22px;
  border-top: 1px solid var(--section-text);
}
.project_scrollbar {
  position: relative;
  width: 100%;
  height: 8px;
  border: 1px solid var(--section-text);
  border-radius: 0;
  background: transparent;
  cursor: grab;
}
.project_scrollbar:active { cursor: grabbing; }
.project_scrollbar .swiper-scrollbar-drag {
  height: 100%;
  border-radius: 0;
  background: var(--section-text);
}
.project_scrollbar.swiper-scrollbar-lock {
  opacity: 0.35;
}
.project_previous,
.project_next {
  width: 42px;
  height: 32px;
  border: 1px solid var(--section-text);
  border-radius: 0;
  background: transparent;
  color: var(--section-text);
  font: inherit;
  cursor: pointer;
}
.project_previous.swiper-button-disabled,
.project_next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.project_pagination {
  position: static;
  min-width: 48px;
  color: var(--section-text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
}
.project_slider.slider_fallback .project_grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 30px;
}
.project_slider.slider_fallback + .project_controls { display: none; }

/* Project modal */
.project_modal {
  position: fixed;
  top: 0;
  right: -100vw;
  bottom: 0;
  left: auto;
  width: min(760px, 100vw);
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 64px);
  border: 0;
  border-left: 2px solid var(--text);
  border-radius: 0;
  background: var(--background);
  color: var(--text);
  opacity: 0;
  transition:
    right 0.3s ease,
    opacity 0.3s ease;
}
.project_modal.is_open {
  right: 0;
  opacity: 1;
}
.project_modal.is_closing {
  right: -100vw;
  opacity: 0;
}
.project_modal::backdrop {
  background: rgba(17, 17, 17, 0);
  backdrop-filter: blur(4px);
  transition: background-color 0.3s ease;
}
.project_modal.is_open::backdrop {
  background: rgba(17, 17, 17, 0.72);
}
.project_modal_close {
  display: block;
  padding: 7px 10px;
  margin-left: auto;
  border: 1px solid var(--text);
  border-radius: 0;
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.project_modal_layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(32px, 6vh, 56px);
  margin-top: clamp(36px, 7vh, 72px);
}
.project_modal_header { align-self: start; }
.modal_type {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.project_modal h2 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.modal_description {
  max-width: 620px;
  margin-top: clamp(20px, 4vh, 32px);
  font-size: clamp(12px, 1.2vw, 14px);
  font-weight: 600;
  line-height: 1.7;
  word-break: keep-all;
}
.modal_details {
  border-top: 1px solid var(--text);
}
.modal_details div {
  display: grid;
  grid-template-columns: minmax(100px, 24%) minmax(0, 1fr);
  gap: 14px;
  min-height: 72px;
  padding: clamp(14px, 2vh, 18px) 0;
  border-bottom: 1px solid var(--text);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}
.modal_details dt { font-weight: 900; }
.modal_details dd {
  min-height: 42px;
  word-break: keep-all;
  white-space: pre-wrap;
}
.project_modal_footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  padding-top: 15px;
  margin-top: 40px;
  border-top: 1px solid var(--text);
  font-size: 10px;
  font-weight: 900;
}
.project_modal_footer a {
  padding: 9px 12px;
  background: var(--text);
  color: var(--background);
}
.project_modal_footer a[hidden] { display: none; }

/* About */
.about_section {
  --cursor-color: #ff2b8a;
  --cursor-text: #111111;
  min-height: calc(100svh - 200px);
  display: flex;
  align-items: center;
  padding: 64px var(--side-padding);
  background: var(--about-background);
  color: var(--text);
}
.about_layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(320px, 0.85fr);
  gap: clamp(50px, 6vw, 110px);
  align-items: end;
  margin-top: 20px;
}
.about_section h2 em {
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
  text-transform: none;
}
.about_text > p {
  font-size: clamp(21px, 1.65vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-weight: 600;
}
.about_text dl {
  margin-top: 42px;
  border-top: 1px solid var(--text);
}
.about_text dl div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--text);
  font-size: 12px;
  text-transform: uppercase;
}
.about_text dt { font-weight: 900; }

/* Contact */
.contact_section {
  --cursor-color: #5a5a5a;
  --cursor-text: #ffffff;
  padding: 56px var(--side-padding) 20px;
  background: var(--highlight);
}
.contact_section > p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.contact_section > a {
  display: flex;
  justify-content: space-between;
  margin: 18px 0 38px;
  font-size: clamp(104px, 12.5vw, 180px);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.025em;
}
.contact_section > a span { font-size: 0.35em; }
.contact_footer {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--text);
  font-size: 8px;
  font-weight: 800;
}

/* Contact modal */
.contact_modal {
  width: min(680px, calc(100% - 36px));
  max-height: calc(100svh - 36px);
  overflow-y: auto;
  padding: 40px;
  border: 2px solid var(--text);
  border-radius: 0;
  background: var(--about-background);
  color: var(--text);
}
.contact_modal::backdrop {
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(4px);
}
.contact_modal_close {
  display: block;
  padding: 7px 10px;
  margin-left: auto;
  border: 1px solid var(--text);
  background: transparent;
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}
.contact_modal_label {
  margin-top: 40px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.contact_modal h2 {
  margin: 8px 0 32px;
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 0.85;
  text-transform: uppercase;
}
.contact_modal form { display: grid; gap: 18px; }
.contact_modal label { display: grid; gap: 7px; }
.contact_modal label span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact_modal input,
.contact_modal textarea {
  width: 100%;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--text);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  resize: vertical;
}
.contact_modal input:focus,
.contact_modal textarea:focus {
  border-bottom-width: 2px;
  outline: 2px solid var(--text);
  outline-offset: 4px;
}
.contact_submit {
  padding: 13px 16px;
  margin-top: 10px;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--about-background);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  cursor: pointer;
}

/* Scroll reveal */
.reveal_on_scroll {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal_on_scroll.is_visible {
  opacity: 1;
  transform: none;
}
