/* space-mono-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/space-mono/space-mono-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-mono-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Mono";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/space-mono/space-mono-v17-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* space-mono-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Space Mono";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/space-mono/space-mono-v17-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v24-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Colors */
/* Breakpoints */
* {
  box-sizing: border-box;
}

html {
  min-height: 100vh;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Space Mono", monospace;
  background-color: #ffffff;
  color: #000000;
}

.site-main {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

body.modal-open {
  overflow: hidden;
}

#primary {
  flex: 1 0 auto;
}

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

img {
  max-width: 100%;
  height: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.site-header__inner {
  max-width: 1440px;
  height: 80px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #1d4ed8;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.35rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 200ms ease;
}
.site-header__logo:hover {
  opacity: 0.7;
}
.site-header__logo:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}
.site-header__logo-firstname, .site-header__logo-lastname {
  display: inline-block;
}

.site-header__nav {
  display: block;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-header__menu a {
  font-family: "Space Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: #000000;
}

.site-header__menu a:hover,
.site-header__menu a:focus {
  color: #3b82f6;
}

.site-header__burger {
  display: none;
  width: 28px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  margin-bottom: 6px;
  background-color: #000000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__burger span:last-child {
  margin-bottom: 0;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .site-header__inner {
    height: 72px;
    padding: 0 24px;
  }
  .site-header__logo {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    line-height: 1.2;
  }
  .site-header__burger {
    display: block;
  }
  .site-header__nav {
    position: absolute;
    top: 72px;
    left: 0;
    display: none;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: #1d4ed8;
  }
  .site-header__nav.is-open {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .site-header__menu {
    flex-direction: column;
    gap: 32px;
  }
  .site-header__menu a {
    font-size: 44px;
    line-height: 1.2;
    color: #ffffff;
  }
}
.site-footer {
  flex-shrink: 0;
  width: 100%;
  padding: 24px 20px;
  background-color: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.35);
}
.site-footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
}
.site-footer__nav {
  width: 100%;
}
.site-footer__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__menu a {
  display: inline-block;
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 200ms ease;
}
.site-footer__menu a:hover {
  color: #1d4ed8;
}
.site-footer__menu a:focus-visible {
  color: #1d4ed8;
  outline: 2px solid #1d4ed8;
  outline-offset: 4px;
}
.site-footer__menu .current-menu-item > a,
.site-footer__menu .current_page_item > a {
  color: #1d4ed8;
}
.site-footer__copyright {
  margin: 0;
  color: rgba(0, 0, 0, 0.65);
  font-family: "Space Mono", monospace;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.7px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .site-footer {
    padding: 24px 16px;
  }
  .site-footer__container {
    gap: 18px;
  }
  .site-footer__menu {
    flex-direction: column;
    gap: 12px;
  }
  .site-footer__copyright {
    max-width: 280px;
    font-size: 11px;
  }
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.contact-modal__content {
  position: relative;
  z-index: 1;
  width: 597px;
  max-width: calc(100vw - 40px);
  height: auto;
  max-height: 769px;
  overflow: hidden;
  box-sizing: border-box;
  background: #ffffff;
  border: 5px solid #000000;
  padding: 8px 80px 40px;
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.contact-modal.is-open .contact-modal__content {
  transform: translateY(0);
  opacity: 1;
}

.contact-modal__title-wrapper {
  width: calc(100% + 160px);
  margin-left: -80px;
  margin-bottom: 40px;
  overflow: hidden;
}

.contact-modal__title-img {
  display: block;
  width: 886px;
  max-width: none;
  height: auto;
  transform: translateX(-142px);
}

.contact-modal .wpcf7 {
  max-width: 300px;
  margin: 0 auto;
}

.contact-modal label {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-modal input,
.contact-modal textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #b8bbc2;
  border-radius: 6px;
  padding: 10px;
  font-family: "Space Mono", monospace;
}

.contact-modal textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-modal input[type=submit] {
  border: 0;
  border-radius: 0;
  background: #d8d8d8;
  padding: 14px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .contact-modal {
    padding: 24px 16px;
  }
  .contact-modal__content {
    width: 286px;
    max-width: calc(100vw - 32px);
    max-height: 620px;
    border-width: 3px;
    padding: 8px 32px 28px;
    overflow: hidden;
  }
  .contact-modal__title-wrapper {
    width: calc(100% + 64px);
    margin-left: -32px;
    margin-bottom: 32px;
  }
  .contact-modal__title-img {
    width: 420px;
    max-width: none;
    transform: translateX(-67px);
  }
  .contact-modal .wpcf7 {
    max-width: 100%;
  }
  .contact-modal textarea {
    max-height: 150px;
    min-height: 130px;
  }
}
/* Info AND Image section */
#primary.single-photo {
  padding: 40px 20px;
}

.single-photo__article {
  max-width: 1148px;
  margin: 0 auto;
}

.single-photo__hero {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.single-photo__infos,
.single-photo__image {
  width: 50%;
}

.single-photo__title {
  font-family: "Space Mono", monospace;
  font-style: italic;
  text-transform: uppercase;
  font-size: 66px;
  line-height: 0.9;
  margin: 0 0 32px;
}

.single-photo__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.single-photo__meta li {
  margin-bottom: 16px;
}

.single-photo__image img {
  width: 100%;
  height: 844px;
  object-fit: cover;
  display: block;
}

/* Actions section */
.single-photo__actions {
  min-height: 118px;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single-photo__contact {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: space-between;
}
.single-photo__contact p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.single-photo__contact-button {
  width: 272px;
  height: 50px;
  border: none;
  background-color: #d8d8d8;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.single-photo__contact-button:hover {
  background-color: #000000;
  color: #ffffff;
}

.single-photo__navigation {
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-photo__nav-preview {
  position: relative;
  width: 81px;
  height: 71px;
}

.single-photo__nav-thumbnail {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.single-photo__nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-photo__nav-arrows {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.single-photo__nav-link {
  color: #000000;
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
}

.single-photo__nav-arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.single-photo__nav-link:hover .single-photo__nav-arrow {
  transform: scale(1.2);
}

.single-photo__navigation:has(.single-photo__nav-link--previous:hover) .single-photo__nav-thumbnail--previous {
  opacity: 1;
}

.single-photo__navigation:has(.single-photo__nav-link--next:hover) .single-photo__nav-thumbnail--next {
  opacity: 1;
}

/* Photo block section */
.single-photo__related {
  margin-top: 80px;
}

.single-photo__related-title {
  font-family: "Space Mono", monospace;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 48px;
}

.single-photo__related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .single-photo__hero {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .single-photo__infos,
  .single-photo__image {
    width: 100%;
  }
  .single-photo__image img {
    height: auto;
    max-height: 397px;
    object-fit: cover;
  }
  .single-photo__title {
    font-size: 46px;
  }
  .single-photo__actions {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
    align-items: center;
  }
  .single-photo__actions p {
    text-align: center;
  }
  .single-photo__contact {
    flex-direction: column;
    gap: 12px;
  }
  .single-photo__navigation {
    display: none;
  }
  .single-photo__related {
    margin-top: 40px;
  }
  .single-photo__related-title {
    text-align: center;
    font-size: 14px;
    margin-bottom: 24px;
  }
  .single-photo__related-grid {
    grid-template-columns: 1fr;
  }
}
.photo-block {
  width: 100%;
}

.photo-block__image-wrapper {
  position: relative;
  width: 100%;
  height: 495px;
  overflow: hidden;
}

.photo-block__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-block__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-block__image-wrapper:hover .photo-block__overlay {
  opacity: 1;
}

.photo-block__eye {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 46px;
  height: 31px;
  transform: translate(-50%, -50%);
}

.photo-block__fullscreen {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.photo-block__eye img,
.photo-block__fullscreen img {
  width: 100%;
  height: 100%;
  display: block;
}

.photo-block__footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.photo-block__title,
.photo-block__category {
  margin: 0;
  color: #ffffff;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .photo-block__image-wrapper {
    height: 278px;
  }
  .photo-block__footer {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .photo-block__title,
  .photo-block__category {
    font-size: 12px;
  }
}
.home-hero {
  width: 100%;
  background-color: #ffffff;
}

.home-hero__container {
  width: 100%;
  max-width: 1148px;
  padding-top: 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: 40px;
}

.home-hero__content {
  max-width: 650px;
}

.home-hero__title {
  margin: 0;
  font-family: "Space Mono", monospace;
  font-size: clamp(40px, 5vw, 72px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  text-transform: none;
}

.home-hero__job {
  margin: 16px 0 0;
  font-family: "Space Mono", monospace;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #1d4ed8;
}

.home-hero__description {
  max-width: 600px;
  margin: 24px 0 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.home-hero__button {
  min-width: 180px;
  min-height: 52px;
  padding: 14px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #1d4ed8;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.home-hero__button--primary {
  background-color: #1d4ed8;
  color: #ffffff;
}

.home-hero__button--primary:hover {
  background-color: #000000;
  border-color: #000000;
}

.home-hero__button--secondary {
  background-color: transparent;
  color: #1d4ed8;
}

.home-hero__button--secondary:hover {
  background-color: #1d4ed8;
  color: #ffffff;
}

.home-hero__button:hover {
  transform: translateY(-2px);
}

.home-hero__button:focus-visible {
  outline: 3px solid #000000;
  outline-offset: 4px;
}

.home-hero__visual {
  width: min(100%, 360px);
  aspect-ratio: 1/1;
  margin: 0 auto;
  padding: 14px;
  border: 14px solid #1d4ed8;
  border-radius: 50%;
  overflow: hidden;
}

.home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 900px) {
  .home-hero {
    padding: 40px 30px 0 30px;
  }
  .home-hero__container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .home-hero__content {
    max-width: 700px;
    margin: 0 auto;
  }
  .home-hero__description {
    margin-right: auto;
    margin-left: auto;
  }
  .home-hero__actions {
    justify-content: center;
  }
  .home-hero__visual {
    grid-row: 1;
    width: min(75vw, 320px);
  }
}
@media (max-width: 768px) {
  .home-hero {
    padding: 30px 24px 0 24px;
  }
  .home-hero__container {
    min-height: auto;
    gap: 40px;
  }
  .home-hero__title {
    font-size: 38px;
  }
  .home-hero__job {
    font-size: 25px;
  }
  .home-hero__description {
    margin-top: 20px;
    font-size: 16px;
  }
  .home-hero__actions {
    flex-direction: column;
  }
  .home-hero__button {
    width: 100%;
  }
  .home-hero__visual {
    width: min(75vw, 270px);
    padding: 8px;
    border-width: 9px;
  }
}
/* photo list */
.photo-list {
  max-width: 1148px;
  margin: 20px auto 0;
  padding: 0 40px;
}
.photo-list__title {
  margin: 0 0 40px;
}

.photo-list__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.photo-card {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.photo-card__link {
  display: block;
  width: 100%;
  height: 100%;
}

.photo-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-list__load-more {
  display: block;
  width: 272px;
  height: 50px;
  margin: 40px auto 0;
  border: none;
  background-color: #d8d8d8;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  cursor: pointer;
}

.photo-list__load-more:hover {
  background-color: #000000;
  color: #ffffff;
}

.photo-list__load-more:disabled {
  opacity: 0.6;
  cursor: wait;
}

@media (max-width: 768px) {
  .photo-list {
    margin: 0;
    padding: 0 30px;
  }
  .photo-list__grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .photo-list__load-more {
    margin: 30px auto;
  }
}
.photo-list__filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  max-width: 1148px;
  margin: 0 auto 40px;
  padding: 0 20px;
}
.photo-list__filters-left {
  display: flex;
  gap: 36px;
}
.photo-list__select {
  width: 260px;
  height: 43px;
  padding: 0 18px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  background-color: #ffffff;
  color: #313144;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
}
.photo-list__select option {
  text-transform: none;
}
.photo-list__select:hover {
  border-color: #215aff;
}
.photo-list__select:focus {
  outline: 2px solid #215aff;
  outline-offset: 2px;
}
.photo-list__loading, .photo-list__empty {
  grid-column: 1/-1;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #313144;
}

@media screen and (max-width: 768px) {
  .photo-list__filters {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 30px auto;
    padding: 0 20px;
  }
  .photo-list__filters-left {
    flex-direction: column;
    gap: 8px;
  }
  .photo-list__select {
    width: 270px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
}
.lightbox.is-open {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 40px;
  right: 56px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}
.lightbox__content {
  width: min(70vw, 900px);
}
.lightbox__image {
  display: block;
  width: 100%;
  max-height: 75vh;
  object-fit: contain;
}
.lightbox__infos {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  font-family: "Space Mono", monospace;
  font-size: 14px;
  text-transform: uppercase;
}
.lightbox__title, .lightbox__category {
  margin: 0;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: "Space Mono", monospace;
  font-size: 12px;
  cursor: pointer;
}
.lightbox__nav--prev {
  left: 40px;
}
.lightbox__nav--next {
  right: 40px;
}

body.lightbox-open {
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .lightbox__content {
    width: 85vw;
  }
  .lightbox__close {
    top: 24px;
    right: 24px;
  }
  .lightbox__nav {
    top: auto;
    bottom: 40px;
  }
  .lightbox__nav--prev {
    left: 24px;
  }
  .lightbox__nav--next {
    right: 24px;
  }
  .lightbox__infos {
    font-size: 12px;
  }
}
.home-about {
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  font-family: "Space Mono", monospace;
  max-width: 1148px;
  margin: 0 auto;
  padding: 0 40px 0 40px;
}
.home-about__container {
  width: 100%;
  margin: 0 auto;
}
.home-about__title {
  margin: 0 0 40px;
}
.home-about__introduction {
  max-width: 520px;
  margin: 0;
  color: #313144;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.home-about__interests {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
}
.home-about__interest {
  position: relative;
  min-height: 280px;
  padding: 40px 32px;
  overflow: hidden;
  background-color: #ffffff;
  transition: background-color 200ms ease, transform 200ms ease;
}
.home-about__interest:not(:last-child) {
  border-right: 2px solid #000000;
}
.home-about__interest:hover {
  background-color: #eff6ff;
  transform: translateY(-6px);
}
.home-about__number {
  position: absolute;
  top: 8px;
  right: 18px;
  color: rgba(29, 78, 216, 0.13);
  font-family: "Space Mono", monospace;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}
.home-about__interest-content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
}
.home-about__interest-title {
  margin: 0 0 18px;
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: 1.35rem;
  font-weight: 700;
}
.home-about__interest-text {
  max-width: 290px;
  margin: 0;
  color: #313144;
  font-family: "Poppins", sans-serif;
  line-height: 1.7;
}
.home-about__footer {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
}
.home-about__question {
  margin: 0;
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: 1.05rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .home-about {
    padding: 0 20px;
  }
  .home-about__interests {
    grid-template-columns: 1fr;
  }
  .home-about__interest {
    min-height: 220px;
    padding: 30px 24px;
  }
  .home-about__interest:not(:last-child) {
    border-right: 0;
    border-bottom: 2px solid #000000;
  }
  .home-about__footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-about__button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-about__interest, .home-about__button {
    transition: none;
  }
  .home-about__interest:hover, .home-about__button:hover {
    transform: none;
  }
}
.home-skills {
  width: 100%;
  padding-bottom: 80px;
  color: #000000;
  font-family: "Space Mono", monospace;
  max-width: 1148px;
  margin: 0 auto;
  padding: 0 40px 40px 40px;
}
.home-skills__container {
  width: 100%;
  margin: 0;
}
.home-skills__title {
  margin: 0 0 40px;
}
.home-skills__introduction {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.8;
}
.home-skills__list {
  display: grid;
  grid-template-columns: repeat(7, minmax(110px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-skills__item {
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}
.home-skills__icon-wrapper {
  display: flex;
  width: 116px;
  height: 116px;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background-color: #ffffff;
  transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.home-skills__icon {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.home-skills__name {
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: 0.95rem;
  font-weight: 700;
}
.home-skills__item:hover .home-skills__icon-wrapper {
  border-color: #1d4ed8;
  box-shadow: 0 10px 30px rgba(29, 78, 216, 0.25);
  transform: translateY(-8px);
}

@media screen and (max-width: 1100px) {
  .home-skills__list {
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}
@media screen and (max-width: 768px) {
  .home-skills {
    padding: 0 20px 40px 20px;
  }
  .home-skills__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 45px;
  }
  .home-skills__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 20px;
  }
  .home-skills__icon-wrapper {
    width: 100px;
    height: 100px;
  }
  .home-skills__icon {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 380px) {
  .home-skills__list {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-skills__icon-wrapper {
    transition: none;
  }
  .home-skills__item:hover .home-skills__icon-wrapper {
    transform: none;
  }
}
.single-project {
  padding: 80px 20px 120px;
  background-color: #ffffff;
}
.single-project__article {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.single-project__header {
  max-width: 900px;
  margin-bottom: 48px;
}
.single-project__eyebrow {
  margin: 0 0 16px;
  color: #1d4ed8;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.single-project__title {
  max-width: 900px;
  margin: 0;
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  overflow-wrap: anywhere;
}
.single-project__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.single-project__category {
  padding: 8px 14px;
  border: 1px solid #000000;
  border-radius: 100px;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
}
.single-project__visual {
  width: 100%;
  margin: 0 0 64px;
  overflow: hidden;
  border: 2px solid #000000;
  background-color: #eff6ff;
}
.single-project__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
}
.single-project__layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 80px;
  align-items: start;
}
.single-project__content {
  min-width: 0;
}
.single-project__section-title, .single-project__information-title {
  margin: 0 0 28px;
  color: #000000;
  font-family: "Space Mono", monospace;
  font-weight: 700;
}
.single-project__section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.single-project__information-title {
  font-size: 1.25rem;
}
.single-project__description {
  color: #313144;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.single-project__description > :first-child {
  margin-top: 0;
}
.single-project__description > :last-child {
  margin-bottom: 0;
}
.single-project__description h2,
.single-project__description h3,
.single-project__description h4 {
  margin: 48px 0 20px;
  color: #000000;
  font-family: "Space Mono", monospace;
  line-height: 1.2;
}
.single-project__description h2 {
  font-size: 2rem;
}
.single-project__description h3 {
  font-size: 1.5rem;
}
.single-project__description p {
  margin: 0 0 24px;
}
.single-project__description ul,
.single-project__description ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.single-project__description a {
  color: #1d4ed8;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.single-project__description img {
  max-width: 100%;
  height: auto;
}
.single-project__sidebar {
  position: sticky;
  top: 120px;
  padding: 32px;
  border: 2px solid #000000;
  background-color: #ffffff;
}
.single-project__information:not(:last-child) {
  margin-bottom: 36px;
}
.single-project__technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-project__technology {
  padding: 9px 14px;
  border-radius: 3px;
  background-color: #eff6ff;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
}
.single-project__links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 40px;
}
.single-project__button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  border: 2px solid #1d4ed8;
  border-radius: 3px;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}
.single-project__button:hover {
  transform: translateY(-3px);
}
.single-project__button:focus-visible {
  outline: 3px solid #215aff;
  outline-offset: 4px;
}
.single-project__button--primary {
  background-color: #1d4ed8;
  color: #ffffff;
}
.single-project__button--primary:hover {
  background-color: #ffffff;
  color: #1d4ed8;
}
.single-project__button--secondary {
  background-color: #ffffff;
  color: #1d4ed8;
}
.single-project__button--secondary:hover {
  background-color: #1d4ed8;
  color: #ffffff;
}
.single-project__empty {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.single-project__empty h1 {
  color: #000000;
  font-family: "Space Mono", monospace;
}
.single-project__empty p {
  color: #313144;
  font-family: "Poppins", sans-serif;
}

@media screen and (max-width: 900px) {
  .single-project {
    padding-top: 60px;
  }
  .single-project__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .single-project__sidebar {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .single-project {
    padding: 48px 20px 80px;
  }
  .single-project__header {
    margin-bottom: 32px;
  }
  .single-project__title {
    font-size: clamp(2.7rem, 15vw, 4.5rem);
  }
  .single-project__visual {
    margin-bottom: 48px;
  }
  .single-project__image {
    min-height: 240px;
    object-fit: cover;
  }
  .single-project__layout {
    gap: 40px;
  }
  .single-project__sidebar {
    padding: 24px 20px;
  }
  .single-project__button {
    width: 100%;
  }
}
.page-content {
  width: 100%;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 6vw, 80px);
}
.page-content__container {
  width: 100%;
  max-width: 960px;
  margin-inline: auto;
}
.page-content__article {
  width: 100%;
}
.page-content__header {
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.page-content__title {
  margin: 0;
  color: #000000;
  font-family: "Poppins", sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}
.page-content__body {
  color: #000000;
  font-family: "Space Mono", monospace;
  font-size: 16px;
  line-height: 1.8;
}
.page-content__body h2 {
  margin: 48px 0 16px;
  color: #1d4ed8;
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.3;
}
.page-content__body h3 {
  margin: 32px 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 1.4;
}
.page-content__body p {
  margin: 0 0 20px;
}
.page-content__body ul,
.page-content__body ol {
  margin: 0 0 24px;
  padding-left: 24px;
}
.page-content__body li {
  margin-bottom: 8px;
}
.page-content__body a {
  color: #1d4ed8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.page-content__body a:hover {
  opacity: 0.7;
}
.page-content__body a:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 4px;
}
.page-content__body strong {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-content {
    padding-block: 40px;
  }
  .page-content__header {
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
  .page-content__body {
    font-size: 15px;
    line-height: 1.7;
  }
  .page-content__body h2 {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=theme.css.map */
