*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  padding: 16px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 22% 18%, #e3f5e1 0%, rgba(227, 245, 225, 0.6) 24%, transparent 58%),
    radial-gradient(circle at 72% 20%, #fbe9b0 0%, rgba(251, 233, 176, 0.6) 24%, transparent 58%),
    radial-gradient(circle at 24% 68%, #f2f7d0 0%, rgba(242, 247, 208, 0.6) 26%, transparent 60%),
    radial-gradient(circle at 68% 72%, #fdedd9 0%, rgba(253, 237, 217, 0.6) 26%, transparent 62%),
    radial-gradient(circle at 52% 54%, #e8e4fc 0%, rgba(232, 228, 252, 0.55) 28%, transparent 64%),
    #d7f2fd;
  position: relative;
}


:root {
  --frost-bg: rgba(255, 255, 255, 0.4);
  --frost-bg-2: rgba(255, 255, 255, 0.6);
  --frost-shadow: inset 0.5px 0.3px 0 rgba(255, 255, 255, 0.5),
    inset -0.5px -0.3px 0 rgba(255, 255, 255, 0.5);
  --blur-soft: 32px;
  --blur-strong: 100px;
  --carousel-transition: 400ms;
}

.site-header {
  position: fixed;
  left: 50%;
  top: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 100;
}

.tabbar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(206, 203, 203, 0.6);
  backdrop-filter: blur(var(--blur-soft));
  box-shadow: var(--frost-shadow);
}

.tabbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.tabbar-link--single {
  padding: 4px;
  border-radius: 999px;
  background: rgba(206, 203, 203, 0.6);
  backdrop-filter: blur(var(--blur-soft));
  box-shadow: var(--frost-shadow);
}

.site-header .button-icon {
  background: transparent;
}

.tabbar-link.is-active .button-icon {
  background: rgb(238, 238, 239);
}

.site-header .button-icon__img {
  width: 24px;
  height: 24px;
}


.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 0;
  border-radius: 100px;
  background: var(--frost-bg);
  color: rgba(0, 11, 0, 0.72);
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  text-decoration: none;
  backdrop-filter: blur(var(--blur-soft));
  box-shadow: var(--frost-shadow);
  cursor: pointer;
  white-space: nowrap;
}

.big-button {
  height: 68px;
  background: rgba(206, 203, 203, 0.6);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.big-button:hover {
  background: rgba(206, 203, 203, 1);
  box-shadow: 0 0 0 4px rgba(206, 203, 203, 0.4);
}

.big-button--hidden {
  display: none;
}

.project-live-shell:has(.big-button--hidden) {
  display: none;
}

.ghost-button.big-button {
  gap: 16px;
  padding-right: 12px;
}

.button-text {
  flex: 1;
  text-align: center;
}

.button-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(238, 238, 239);
  border-radius: 999px;
  flex-shrink: 0;
  transition: background 200ms ease;
}

.button-icon:hover {
  background: rgba(255, 255, 255, 0.4);
}

.button-icon .button-icon__img {
  transition: transform 200ms ease;
}

.button-icon:hover .button-icon__img {
  transform: rotate(10deg) scale(1.1);
}

/* Sync icon animation when hovering on parent big-button */
.big-button:hover .button-icon {
  background: rgba(255, 255, 255, 0.4);
}

.big-button:hover .button-icon__img {
  transform: rotate(10deg) scale(1.1);
}

.button-icon__img {
  width: 18px;
  height: 18px;
  display: block;
}


.page-body {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 32px);
  padding: 62px 0 130px;
}

.page-body--home {
  padding: 100px 0 0 0;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 32px);
}

.page-body--about {
  padding: 100px 0 0 0;
  overflow-x: hidden;
  overflow-x: clip;
}

.page-shell {
  width: 100%;
  margin: 0 auto;
}

.page-body--project {
  align-items: stretch;
  min-height: calc(100vh - 32px);
  padding: 0;
}

.project-layout {
  width: 100%;
}

.project-shell {
  width: 100%;
}

.project-panel {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  align-items: start;
  min-height: calc(100vh - 32px);
}

.project-sidebar {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: calc(100vh - 32px);
  position: sticky;
  top: 16px;
  align-self: start;
  padding: 0;
  overflow: hidden;
}

.project-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
}

.project-sidebar .subsection-stack {
  flex: 1 1 auto;
  min-height: 0;
  gap: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.project-sidebar .subsection-block {
  height: auto;
}

.project-sidebar-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--frost-bg);
  border-radius: 32px;
  backdrop-filter: blur(var(--blur-strong));
  box-shadow: var(--frost-shadow);
  overflow: hidden;
  position: relative;
}

.project-sidebar-scroll {
  flex: 1 1 auto;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 76px 16px 100px;
}

.project-live-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  display: flex;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.project-live-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.96) 33%,
    rgba(255, 255, 255, 0.6) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.project-live {
  position: relative;
  z-index: 1;
  width: 100%;
  justify-content: center;
}

.project-live-button--inline {
  display: none;
}

.info-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.text-pair {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-row {
  width: 100%;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.credits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}

@media (max-height: 800px) {
  .page-body {
    justify-content: flex-start;
  }

  .page-body--home {
    justify-content: center;
  }
}

@media (max-width: 1024px) {
  .page-body--project {
    height: calc(100vh - 32px);
    overflow: hidden;
  }

  .project-layout {
    min-height: auto;
  }

  .project-panel {
    grid-template-columns: 1fr;
    height: 100%;
    min-height: auto;
  }

  .project-sidebar {
    height: auto;
    overflow: visible;
    position: static;
  }

  .project-sidebar .subsection-stack {
    min-height: 0;
    padding: 0;
    overflow: visible;
  }

  .project-sidebar-inner {
    height: calc(100vh - 32px);
    max-height: none;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .project-sidebar-scroll {
    overflow-y: auto;
    padding: 76px 16px 16px;
  }

  .project-live-shell {
    display: none;
  }

  .project-live {
    align-self: stretch;
  }

  .project-live-button--inline {
    display: inline-flex;
  }

  .project-live-button--inline.big-button--hidden {
    display: none;
  }

  .project-controls-shell {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: auto;
    margin-bottom: 0;
  }

  .project-content {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
}

.section-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  width: 696px;
  margin: 0 auto;
  background: var(--frost-bg);
  border-radius: 32px;
  backdrop-filter: blur(var(--blur-strong));
  box-shadow: var(--frost-shadow);
  color: rgba(0, 11, 0, 0.72);
}

.section-block.section-block--full {
  width: 100%;
  max-width: none;
}

.section-block.project-shell {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  gap: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  align-items: stretch;
}

.section-block.project-sidebar {
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.section-block.project-content {
  padding: 0;
  align-items: stretch;
  gap: 16px;
}

.project-content-shell {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  color: inherit;
}

.section-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-icon--note {
  background-image: url("assets/icons/notebook.png");
  border: none;
}

.section-icon--playfitt {
  background-image: url("assets/logos/playfitt.png");
  border: none;
}

.section-icon--maxa {
  background-image: url("assets/logos/maxa.png");
  border: none;
}

.section-icon--northstar {
  background-image: url("assets/logos/northstar.png");
  border: none;
}

.section-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.big-title {
  margin: 0;
  font-family: "Inter Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: rgba(0, 0, 0, 0.96);
}

.project-text-block .big-title {
  color: #636363;
}

.text-highlight {
  color: rgba(0, 0, 0, 0.96);
}

.section-title,
.subsection-title {
  margin: 0;
  font-family: "Inter Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.96);
}

.subsection-title {
  text-align: center;
}

.subsection-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 24px 36px;
  background: var(--frost-bg-2);
  border-radius: 24px;
  backdrop-filter: blur(var(--blur-strong));
  box-shadow: var(--frost-shadow);
}

.subsection-block > img {
  width: 100%;
  height: auto;
  display: block;
}

.subsection-block.subsection-block--clip {
  overflow: hidden;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 24px;
  text-decoration: none;
  color: inherit;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.subsection-block.project-card:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

/* Disable hover effect for project-card inside project pages */
.page-body--project .subsection-block.project-card:hover {
  background: var(--frost-bg-2);
  box-shadow: var(--frost-shadow);
  transform: none;
}

.project-controls-shell {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
}

.project-controls-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.96) 33%,
    rgba(255, 255, 255, 0.6) 66%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.project-controls {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}

.project-controls-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.project-controls .button-icon__img {
  width: 24px;
  height: 24px;
}

.project-controls .button-icon:hover {
  background: rgba(206, 203, 203, 0.6);
}

.project-controls .button-icon:hover .button-icon__img {
  transform: none;
}

.project-compact-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  position: absolute;
  left: 50%;
  top: 50%;
}

.project-compact-logo.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.section-text,
.subsection-body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: #636363;
}

.subsection-body {
  text-align: left;
}

.contact-row {
  display: flex;
  gap: 12px;
  width: 100%;
}

.contact-row a {
  text-decoration: none;
}

.contact-row a:link,
.contact-row a:visited,
.contact-row a:hover,
.contact-row a:focus,
.contact-row a:active {
  color: inherit;
}

.subsection-heading {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}

.subsection-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  align-items: stretch;
}

.subsection-triple {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.subsection-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.overview-grid {
  display: flex;
  gap: 16px;
  width: 100%;
}

.overview-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.overview-column:empty {
  display: none;
}

.overview-section {
  container-type: inline-size;
}

@container (max-width: 700px) {
  .overview-grid {
    flex-direction: column;
  }

  .overview-column {
    display: contents;
  }

  .overview-grid > .overview-column > * {
    order: var(--order, 0);
  }
}

.subsection-block--image {
  padding: 0;
}

.subsection-block--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 728px) {
  .subsection-pair,
  .subsection-triple {
    grid-template-columns: minmax(0, 1fr);
  }

  .overview-grid {
    flex-direction: column;
  }

  .overview-column {
    display: contents;
  }

  .overview-grid > .overview-column > * {
    order: var(--order, 0);
  }
}

@media (max-width: 728px) {
  .page-body--home .section-block {
    width: 100%;
  }

  .page-body--home .projects-grid {
    grid-template-columns: 1fr;
  }

  .page-body--home .project-card {
    width: 100%;
  }
}

@media (max-width: 728px) {
  .page-body--about .section-block {
    width: 100%;
  }
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.experience-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.experience-logo {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.experience-logo--parafoil {
  background-image: url("assets/logos/parafoil.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.experience-logo--juvenilia {
  background-image: url("assets/logos/juvenilia.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.experience-logo--maxa {
  background-image: url("assets/logos/maxa.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.experience-logo--playfitt {
  background-image: url("assets/logos/playfitt.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.experience-logo--scrumlaunch {
  background-image: url("assets/logos/scrumlaunch.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border: none;
}

.experience-content {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.experience-texts {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 auto;
}

.experience-meta {
  text-align: right;
  white-space: nowrap;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-type {
  flex: 1 1 auto;
}

.project-view {
  text-decoration: none;
}

.project-main {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.project-image-section {
  width: 100%;
  aspect-ratio: 1376 / 900;
  position: relative;
}

.image-captioned {
  position: relative;
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  text-align: center;
  pointer-events: none;
}

.image-caption.image-caption--light {
  color: rgba(255, 255, 255, 0.96);
}

.project-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.project-image--locked {
  position: relative;
}

.project-image-section > * {
  position: absolute;
  inset: 0;
}

.project-image-section--natural {
  aspect-ratio: auto;
}

.project-image-section--natural > * {
  position: static;
}

.project-image-section--natural .project-image {
  height: auto;
}

.project-image-section--natural .project-image > img {
  height: auto;
  object-fit: contain;
}

.project-image > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.project-image--video-cover {
  position: relative;
  overflow: hidden;
}

.project-video--cover {
  position: absolute;
  inset: 0;
  transform: scale(1.2);
  transform-origin: center;
}

.quote-button {
  margin-top: 64px;
  align-self: flex-start;
}

.project-image-lock {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 360px;
  max-width: calc(100% - 48px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  transform: translate(-50%, -50%);
}

.project-image-lock-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 4px;
  align-self: center;
}

.project-image-lock-text {
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}

.project-desc a.project-image-lock-link {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transition: color 200ms ease;
}

.project-desc a.project-image-lock-link:hover {
  color: rgba(255, 255, 255, 0.8);
}

.project-image-lock-text .item-title {
  color: #fff;
  font-size: 15px;
}

.project-image-lock-text .project-desc {
  color: rgb(149, 149, 149);
}

.project-lock-input {
  width: 100%;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  box-shadow: var(--frost-shadow), inset 0 0 0 1px rgba(187, 204, 187, 0.6);
  backdrop-filter: blur(var(--blur-soft));
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: #636363;
}

.project-lock-input::placeholder {
  color: #636363;
}

.project-lock-input:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.project-lock-error {
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 460;
  margin-top: 12px;
  text-align: center;
  display: none;
}

.protected-content-container {
  display: contents;
}

.project-image-pair {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-image-item {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.project-image-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-image-stack {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-image-stack-item {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.project-image-stack-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-image-quad {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.project-image-split {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.project-image-split > * {
  min-width: 0;
}

.project-image-split-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.project-image-split-wide {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  align-self: stretch;
  min-height: 0;
}

.project-image-split-wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-image-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-image-grid-item {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
}

.project-image-grid-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-image-quad-item {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
}

.project-image-quad-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.project-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px dashed rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-thumb--cormorant {
  background-image: url("assets/logos/cormorant.png");
  border: none;
}

.project-thumb--essembl {
  background-image: url("assets/logos/essembl.png");
  border: none;
}

.project-thumb--maxa {
  background-image: url("assets/logos/maxa.png");
  border: none;
}

.project-thumb--northstar {
  background-image: url("assets/logos/northstar.png");
  border: none;
}

.before-after {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
  --ba-value: 50%;
}

.before-after__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.before-after__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--ba-value)) 0 0);
}

.before-after__overlay .before-after__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-value);
  width: 2px;
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.96);
  transform: translateX(-50%);
  pointer-events: none;
}

.before-after__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.96);
  border: 2px solid rgba(0, 0, 0, 0.96);
  transform: translate(-50%, -50%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.before-after__handle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.before-after__range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}


.figure-tags {
  position: absolute;
  top: 32px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.project-thumb--playfitt {
  background-image: url("assets/logos/playfitt.png");
  border: none;
}

.project-thumb--serpenta {
  background-image: url("assets/logos/serpenta.png");
  border: none;
}


.item-title {
  margin: 0;
  font-family: "Inter Display", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: normal;
  color: rgba(0, 0, 0, 0.96);
}

.project-desc {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: #636363;
}

.project-card .project-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-desc a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.project-desc a:hover {
  color: rgba(0, 0, 0, 0.96);
}

/* Text link hover effect */
.text-link {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

.text-link:hover {
  color: rgba(0, 0, 0, 0.96);
}

.project-desc-list {
  padding-left: 18px;
}

.project-desc-list li + li {
  margin-top: 6px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.media-grid--stacked {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

.media-grid--stacked .media-card {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 560px) {
  .media-grid--stacked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  height: 100%;
}

.media-meta {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  text-align: center;
}

.media-thumb {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 12px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  display: block;
}

.media-thumb--seneca {
  border: none;
}

.media-thumb--cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

@media (max-width: 728px) {
  .page-body--about .media-thumb--fixed {
    width: 139px;
    height: 139px;
    max-width: 139px;
    max-height: 139px;
  }
}

@media (max-width: 650px) {
  .image-caption {
    display: none;
  }

  .project-image-quad {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-image-split {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }

  .big-title {
    font-size: 17px;
  }
}

#weather-icon .weather-icon-scene {
  display: none;
}

#weather-icon .weather-icon-scene.is-active {
  display: flex;
}

@-webkit-keyframes rotation {
  100% {
    transform: rotate(1turn);
  }
}
@keyframes rotation {
  100% {
    transform: rotate(1turn);
  }
}
@-webkit-keyframes snow {
  0% {
    transform: translateY(-12rem) rotate(45deg);
  }
  50%,
  100% {
    transform: translateY(12rem) rotate(45deg);
  }
}
@keyframes snow {
  0% {
    transform: translateY(-12rem) rotate(45deg);
  }
  50%,
  100% {
    transform: translateY(12rem) rotate(45deg);
  }
}
@-webkit-keyframes thunder {
  0%,
  25%,
  75%,
  100% {
    filter: drop-shadow(0px -1px 0px #cfb8e5) drop-shadow(0px 0px 0px #9a4ee7)
      drop-shadow(0px 0px 0px rgba(154, 78, 231, 0.3))
      drop-shadow(-2px -2px 1px #3c3762) drop-shadow(4px 1px 1px #3c3762);
  }
  50% {
    filter: drop-shadow(0px -1px 0px #cfb8e5) drop-shadow(0px 0px 3px #9a4ee7)
      drop-shadow(0px 0px 30px rgba(154, 78, 231, 0.3))
      drop-shadow(-2px -2px 1px #3c3762) drop-shadow(4px 1px 1px #3c3762);
  }
}
@keyframes thunder {
  0%,
  25%,
  75%,
  100% {
    filter: drop-shadow(0px -1px 0px #cfb8e5) drop-shadow(0px 0px 0px #9a4ee7)
      drop-shadow(0px 0px 0px rgba(154, 78, 231, 0.3))
      drop-shadow(-2px -2px 1px #3c3762) drop-shadow(4px 1px 1px #3c3762);
  }
  50% {
    filter: drop-shadow(0px -1px 0px #cfb8e5) drop-shadow(0px 0px 3px #9a4ee7)
      drop-shadow(0px 0px 30px rgba(154, 78, 231, 0.3))
      drop-shadow(-2px -2px 1px #3c3762) drop-shadow(4px 1px 1px #3c3762);
  }
}
@-webkit-keyframes floating {
  0%,
  100% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(1rem);
  }
}
@keyframes floating {
  0%,
  100% {
    transform: translatey(0);
  }
  50% {
    transform: translatey(1rem);
  }
}
@-webkit-keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@-webkit-keyframes neon {
  0%,
  40%,
  60%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.9);
  }
}
@keyframes neon {
  0%,
  40%,
  60%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(0.9);
  }
}
@-webkit-keyframes moon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-0.35rem) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(0.35rem) scale(0.97);
  }
}
@keyframes moon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  25% {
    transform: translateY(-0.35rem) scale(1.05);
  }
  50% {
    transform: translateY(0) scale(1);
  }
  75% {
    transform: translateY(0.35rem) scale(0.97);
  }
}
.about-weather {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
  width: 100%;
}
.weather {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.weather--sun {
  background: transparent;
}
.weather--thunder {
  background: transparent;
}
.weather--snow {
  background: transparent;
}
.weather--rainbow {
  background: transparent;
}
.weather--rain {
  background: transparent;
}
.weather--moon {
  background: transparent;
}
.icon {
  position: relative;
  width: 18rem;
  height: 13rem;
  transform: scale(0.45);
}
.icon__rainbow {
  position: absolute;
  right: 0rem;
  top: -2rem;
  height: 14rem;
  width: 14rem;
  filter: drop-shadow(0px 0px 10px rgba(255, 255, 255, 0.2));
  -webkit-animation: pulse 4s infinite;
          animation: pulse 4s infinite;
}
.icon__rainbow-arc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  color: red;
  box-shadow: inset 2.5rem 2rem 0.3rem -3rem #000000bf, inset 0 0 0.3rem 0.25rem #ffffffb8, inset 0 0 0.2rem 0.4rem #000000a6, inset 0 0 0 0.6rem;
  -webkit-animation: neon 4s infinite;
          animation: neon 4s infinite;
}
.icon__rainbow-arc:nth-child(1) {
  color: #ff1f5d;
}
.icon__rainbow-arc:nth-child(2) {
  color: #eb8125;
  inset: 0.9rem;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.icon__rainbow-arc:nth-child(3) {
  color: #fbff0e;
  inset: 1.8rem;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.icon__rainbow-arc:nth-child(4) {
  color: #a8ef3c;
  inset: 2.7rem;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.icon__rainbow-arc:nth-child(5) {
  color: #59d9ff;
  inset: 3.6rem;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.icon__rainbow-arc:nth-child(6) {
  color: #6685f5;
  inset: 4.5rem;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
.icon__rainbow-arc:nth-child(7) {
  color: #6a38e1;
  inset: 5.4rem;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.icon__snow {
  position: absolute;
  top: 12.8rem;
  left: 0;
  width: 100%;
  height: 10rem;
  overflow: hidden;
}
.icon__snow-flakes {
  position: absolute;
  top: 0;
  left: 13rem;
  height: 0.8rem;
  width: 0.8rem;
  background: #fff;
  -webkit-animation: snow 3s linear infinite;
          animation: snow 3s linear infinite;
  transform: translateY(-12rem) rotate(45deg);
  opacity: 0.5;
  color: #fff;
  box-shadow: 1rem 2rem, 1rem 7rem, 4rem 8rem, -5rem 8rem, -2rem 4rem, 0rem 11rem, 4rem 5rem, -2rem 8rem, 4rem 3rem 0 -0.1rem, 0rem 5rem 0 -0.1rem, -4rem 5rem 0 -0.1rem, -2rem 10rem 0 -0.1rem, -1rem 3rem 0 -0.2rem, 2rem 5rem 0 -0.2rem, -2rem 11rem 0 -0.2rem, 2rem 9rem 0 -0.2rem, -4rem 3rem 0 -0.2rem;
}
.icon__rain {
  position: absolute;
  top: 12.8rem;
  left: 0;
  width: 100%;
  height: 10rem;
  overflow: hidden;
}
.icon__rain-drops {
  position: absolute;
  top: 0;
  left: 13rem;
  height: 0.6rem;
  width: 0.6rem;
  background: #7a98e9;
  -webkit-animation: snow 3s linear infinite;
          animation: snow 3s linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  transform: translateY(-12rem) rotate(45deg);
  opacity: 1;
  color: #7a98e9;
  box-shadow: 1rem 2rem, 1rem 7rem, 4rem 8rem, -5rem 8rem, -2rem 4rem, 0rem 11rem, 4rem 5rem, -2rem 8rem, 4rem 3rem 0 -0.1rem, 0rem 5rem 0 -0.1rem, -4rem 5rem 0 -0.1rem, -2rem 10rem 0 -0.1rem, -1rem 3rem 0 -0.2rem, 2rem 5rem 0 -0.2rem, -2rem 11rem 0 -0.2rem, 2rem 9rem 0 -0.2rem, -4rem 3rem 0 -0.2rem;
  border-radius: 0 1rem 1rem;
}
.icon__sun {
  position: absolute;
  top: 1rem;
  right: 3.5rem;
  height: 5rem;
  width: 5rem;
  background: linear-gradient(45deg, #f09559 40%, #f0ca43);
  border-radius: 50%;
  filter: drop-shadow(0 0 10px rgba(239, 218, 144, 0.4))
    drop-shadow(0 0 30px rgba(240, 202, 67, 0.4));
}
.icon__sun-lights {
  position: absolute;
  inset: 0;
  -webkit-animation: rotation 6s linear infinite;
          animation: rotation 6s linear infinite;
}
.icon__sun-light {
  position: absolute;
  top: -2.75rem;
  left: 50%;
  margin-left: -0.45rem;
  border-radius: 1rem;
  width: 0.9rem;
  height: 2.5rem;
  background: linear-gradient(45deg, #f0b343, #f0ca43);
  transform-origin: 50% 5.25rem;
}
.icon__sun-light:nth-child(2) {
  transform: rotate(45deg);
}
.icon__sun-light:nth-child(3) {
  transform: rotate(90deg);
}
.icon__sun-light:nth-child(4) {
  transform: rotate(135deg);
}
.icon__sun-light:nth-child(5) {
  transform: rotate(180deg);
}
.icon__sun-light:nth-child(6) {
  transform: rotate(225deg);
}
.icon__sun-light:nth-child(7) {
  transform: rotate(270deg);
}
.icon__sun-light:nth-child(8) {
  transform: rotate(315deg);
}
.icon__moon {
  position: absolute;
  top: 1rem;
  right: 3.5rem;
  height: 5rem;
  width: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 32%, #e6d8a7 0%, #e6d8a7 30%, transparent 32%),
    radial-gradient(circle at 70% 62%, #c7b37a 0%, #c7b37a 24%, transparent 25%),
    radial-gradient(circle at 55% 32%, #d8c48b 0%, #d8c48b 18%, transparent 19%),
    linear-gradient(145deg, #a88f54, #cdbb83 65%, #b8a066);
  box-shadow: 0 0 8px rgba(200, 177, 110, 0.4), 0 0 18px rgba(200, 177, 110, 0.18);
  overflow: hidden;
  -webkit-animation: moon-breathe 4s ease-in-out infinite;
          animation: moon-breathe 4s ease-in-out infinite;
}
.icon__moon:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(0, 0, 0, 0.06) 0%, transparent 55%);
}
.icon__moon-crater {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #d6c48f;
  box-shadow: inset 0.15rem 0.15rem 0.25rem rgba(0, 0, 0, 0.12);
  opacity: 0.8;
}
.icon__moon-crater--1 {
  width: 0.9rem;
  height: 0.9rem;
  top: 1.2rem;
  left: 1.1rem;
}
.icon__moon-crater--2 {
  width: 0.75rem;
  height: 0.75rem;
  top: 2.5rem;
  right: 1rem;
}
.icon__moon-crater--3 {
  width: 0.55rem;
  height: 0.55rem;
  top: 1.8rem;
  right: 2.2rem;
}
.icon__moon-stars {
  position: absolute;
  top: -0.5rem;
  right: 1.4rem;
  width: 5.5rem;
  height: 5.5rem;
  pointer-events: none;
}
.icon__moon-star {
  position: absolute;
  left: 50%;
  top: 50%;
  color: #fff7d6;
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  font-size: 1.35rem;
  letter-spacing: -0.05em;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(255, 247, 214, 0.9), 0 0 16px rgba(255, 241, 180, 0.65),
    0 1px 2px rgba(0, 0, 0, 0.3);
  opacity: 0;
}
.icon__moon-star:nth-child(2) {
  -webkit-animation: z-float-2 4.5s ease-in infinite 0.6s;
          animation: z-float-2 4.5s ease-in infinite 0.6s;
}
.icon__moon-star:nth-child(3) {
  -webkit-animation: z-float-3 5s ease-in infinite 1.2s;
          animation: z-float-3 5s ease-in infinite 1.2s;
}
.icon__moon-star:nth-child(1) {
  -webkit-animation: z-float-1 4s ease-in infinite;
          animation: z-float-1 4s ease-in infinite;
}
@-webkit-keyframes z-float-1 {
  0% {
    transform: translate(-50%, -50%) translate(0rem, 0rem) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(0.2rem, -3.5rem) scale(1.1);
    opacity: 0;
  }
}
@keyframes z-float-1 {
  0% {
    transform: translate(-50%, -50%) translate(0rem, 0rem) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(0.2rem, -3.5rem) scale(1.1);
    opacity: 0;
  }
}
@-webkit-keyframes z-float-2 {
  0% {
    transform: translate(-50%, -50%) translate(-0.4rem, 0.3rem) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(-0.2rem, -4rem) scale(1.1);
    opacity: 0;
  }
}
@keyframes z-float-2 {
  0% {
    transform: translate(-50%, -50%) translate(-0.4rem, 0.3rem) scale(1);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(-0.2rem, -4rem) scale(1.1);
    opacity: 0;
  }
}
@-webkit-keyframes z-float-3 {
  0% {
    transform: translate(-50%, -50%) translate(0.6rem, 0rem) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(0.9rem, -4.4rem) scale(1.12);
    opacity: 0;
  }
}
@keyframes z-float-3 {
  0% {
    transform: translate(-50%, -50%) translate(0.6rem, 0rem) scale(1);
    opacity: 0;
  }
  25% {
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -50%) translate(0.9rem, -4.4rem) scale(1.12);
    opacity: 0;
  }
}
.icon__thunder {
  position: absolute;
  top: 10rem;
  left: 50%;
  margin-left: -2.4rem;
  width: 4.8rem;
  height: 8.6rem;
  filter: drop-shadow(0px -1px 0px #cfb8e5) drop-shadow(0px 0px 0px #9a4ee7)
    drop-shadow(-2px -2px 1px #3c3762) drop-shadow(4px 1px 1px #3c3762);
  -webkit-animation: thunder 3s infinite, floating 3s infinite;
          animation: thunder 3s infinite, floating 3s infinite;
}
.icon__thunder:before,
.icon__thunder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #645d95;
  height: 5rem;
  width: 3rem;
  border-radius: 0.4rem;
  box-shadow: inset -0.2rem -0.4rem 0.2rem #3c3762,
    inset -0.1rem -0.1rem 0.4rem #fff;
  -webkit-clip-path: polygon(100% 100%, 0% 100%, 100% 0);
          clip-path: polygon(100% 100%, 0% 100%, 100% 0);
}
.icon__thunder:after {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(0% 100%, 100% 0%, 45% 0%, 0% 26%);
          clip-path: polygon(0% 100%, 100% 0%, 45% 0%, 0% 26%);
  box-shadow: inset 0.2rem 0.3rem 0.2rem #3c3762,
    inset 0.1rem 0.2rem 0.4rem #fff;
}
.icon__cloud {
  position: absolute;
  left: 0;
  top: 1rem;
  width: 18rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-clip-path: url(#cloud-path);
          clip-path: url(#cloud-path);
  box-shadow: inset 0rem -1.3rem 0.25rem -1rem #fff,
    inset 0rem 0rem 5rem 0rem #ffffff4d;
}
.weather--snow .icon__cloud {
  background: rgba(100, 130, 197, 0.45);
}
.weather--thunder .icon__cloud {
  background: rgba(116, 116, 116, 0.45);
}
.weather--rain .icon__cloud,
.weather--moon .icon__cloud {
  background: rgba(116, 116, 116, 0.45);
}
.weather--rainbow .icon__cloud {
  background: #4a6676;
}
.icon__cloud-reflect {
  height: 12rem;
  width: 11.9rem;
  border-radius: 50%;
  box-shadow: inset 0rem -1.1rem 0.25rem -1rem #fff,
    inset 0.45rem 0rem 0.25rem -0.25rem #fff,
    inset -0.45rem 0.5rem 0.25rem -0.45em #fff,
    inset 0.25rem 0.25rem 0.5rem 0rem rgba(0, 0, 0, 0.3);
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 33%, 50% 30%, 50% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 33%, 50% 30%, 50% 100%, 0% 100%);
}
.icon__cloud-reflect--2 {
  position: absolute;
  width: 8.7rem;
  height: 8.7rem;
  bottom: 0.1rem;
  right: 0.5rem;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 50% 100%, 29% 0%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 50% 100%, 29% 0%);
}
.icon__cloud-shadow {
  position: absolute;
  left: 30rem;
  top: -30rem;
  width: 18rem;
  height: 9rem;
  border-radius: 50%;
  box-shadow: -36rem 38rem 7rem #00000054;
  z-index: -1;
}
.icon__cloud-svg clipPath {
  transform: scale(0.65);
}

.media-grid--stacked .media-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.media-time {
  text-transform: uppercase;
  font-variant-numeric: lining-nums tabular-nums;
}

.clock {
  --clock-size: 150px;
  --clock-padding: calc(var(--clock-size) / 14.4);
  --clock-bg: #f7f7f7;
  --inner-border-width: calc(var(--clock-size) / 72);
  --inner-border-color: #181818;
  --second-hand-color: #ec231e;
  width: var(--clock-size);
  height: var(--clock-size);
  flex-shrink: 0;
  padding: var(--clock-padding);
  background-color: transparent;
  border-radius: calc(var(--clock-size) / 4.5);
  box-shadow: none;
}

.clock .inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: var(--inner-border-width) solid var(--inner-border-color);
  border-radius: 100%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75) inset;
}

.clock .hand {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--clock-size) / 50);
  background-color: #181818;
}

.clock .hand.hour {
  height: calc(var(--clock-size) / 4);
  margin-top: calc(var(--clock-size) / -13.2);
  transform: rotate(0deg) translate(-50%, -50%);
  transform-origin: 0 calc(var(--clock-size) / 13.2);
}

.clock .hand.minute {
  height: calc(var(--clock-size) / 3);
  margin-top: calc(var(--clock-size) / -13.2);
  transform: rotate(0deg) translate(-50%, -50%);
  transform-origin: 0 calc(var(--clock-size) / 13.2);
}

.clock .hand.second {
  width: calc(var(--clock-size) / 185);
  height: calc(var(--clock-size) / 3);
  background-color: var(--second-hand-color);
  margin-top: calc(var(--clock-size) / -10);
  box-shadow: -4px -6px 0 0 rgba(0, 0, 0, 0.15);
  transform: rotate(0deg) translate(-50%, -50%);
  transform-origin: 0 calc(var(--clock-size) / 10);
}

.clock .hand.second::before,
.clock .hand.second::after {
  content: "";
  display: inherit;
  position: inherit;
  left: inherit;
  background-color: inherit;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.clock .hand.second::before {
  top: calc(var(--clock-size) / 3.8);
  width: calc(var(--clock-size) / 20);
  height: calc(var(--clock-size) / 20);
  box-shadow: -2px -2px 2px 0 rgba(0, 0, 0, 0.15);
}

.clock .hand.second::after {
  top: calc(var(--clock-size) / 18);
  width: calc(var(--clock-size) / 36);
  height: calc(var(--clock-size) / 36);
  box-shadow: -4px -6px 2px 0 rgba(0, 0, 0, 0.15);
}

.clock .graduations {
  position: absolute;
  inset: 0;
}

.clock .graduation {
  display: block;
  position: absolute;
  top: calc(var(--inner-border-width) * 1.5);
  left: 50%;
  width: calc(var(--clock-size) / 185);
  height: calc(var(--clock-size) / 40);
  background-color: #181818;
  transform: translateX(-50%);
  transform-origin: 0 calc(((var(--clock-size) - (var(--clock-padding) * 2)) / 2) - (var(--inner-border-width) * 3));
}

.clock .graduation.long {
  width: calc(var(--clock-size) / 90);
  height: calc(var(--clock-size) / 18);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.services-item {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.services-bullets {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.services-bullets li {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: rgba(0, 11, 0, 0.7);
}

.tag-list {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.tag-list--center {
  justify-content: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: 30px;
  background: rgba(225, 229, 230, 0.45);
  border: 0 solid transparent;
  border-bottom: 1px solid rgba(229, 232, 233, 1);
  border-radius: 40px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  color: #636363;
  white-space: nowrap;
}

.tag--headline {
  background: var(--frost-bg-2);
}

.carousel-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  width: var(--carousel-dots-width, 100%);
  max-width: 100%;
  height: 24px;
  margin: 0 auto;
  overflow: visible;
}

.carousel-dots__track {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 8px;
  width: max-content;
  transition: transform var(--carousel-transition) ease;
  will-change: transform;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 0;
  appearance: none;
  outline: none;
  --dot-size-transition: var(--carousel-transition);
  cursor: pointer;
  transition: width var(--carousel-transition) ease, opacity var(--carousel-transition) ease,
    transform var(--carousel-transition) ease;
  transform-origin: center;
  overflow: hidden;
}

.carousel-dot::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transform: scale(var(--dot-scale, 1));
  transform-origin: center;
  transition: width var(--dot-size-transition) ease, height var(--dot-size-transition) ease,
    background 160ms ease, transform var(--carousel-transition) ease;
}

.carousel-dot--s {
  width: 8px;
  height: 8px;
}

.carousel-dot--m {
  width: 8px;
  height: 8px;
}

.carousel-dot--l {
  width: 8px;
  height: 8px;
}

.carousel-dot--pill {
  width: 32px;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
  justify-content: flex-start;
  transition: width var(--carousel-transition) ease;
}

.carousel-dot.is-ghost {
  pointer-events: none;
}

.carousel-dot--pill::before {
  content: none;
}

.carousel-dot--m::before {
  width: 6px;
  height: 6px;
}

.carousel-dot--l::before {
  width: 8px;
  height: 8px;
}

.carousel-dot:hover::before {
  background: rgba(0, 0, 0, 0.96);
}

.carousel-dot:hover {
  --dot-size-transition: 160ms;
}

.carousel-dot--s:hover::before {
  width: 6px;
  height: 6px;
}

.carousel-dot--m:hover::before {
  width: 8px;
  height: 8px;
}

.carousel-dot__progress {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.96);
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  box-sizing: border-box;
  z-index: 999;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: #fff;
}

.lightbox-content {
  position: relative;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 50% 50%,
    #E3F5E1 0%,
    #F4F1C8 10%,
    #FBE9B0 20%,
    #F7F2C0 30%,
    #F2F7D0 40%,
    #F8F1D5 50%,
    #FDEDD9 60%,
    #F2EAF0 70%,
    #E8E4FC 80%,
    #DFF0FC 90%,
    #D7F2FD 100%
  );
  backdrop-filter: none;
  border-radius: 0;
  padding: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  box-shadow: none;
  overflow: hidden;
}

.lightbox-bar {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.lightbox-footer {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.lightbox-footer .section-text {
  text-align: center;
}

.lightbox-bar-spacer {
  width: 44px;
  height: 44px;
}

.lightbox-counter {
  text-align: center;
  color: rgba(0, 0, 0, 0.96);
  font-family: "SFMono-Regular", "Menlo", "Consolas", "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0;
  text-transform: uppercase;
  font-variant-numeric: lining-nums tabular-nums;
}

.lightbox-body {
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr;
  align-items: center;
  gap: 24px;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}

.lightbox-stage {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  flex: 1 1 auto;
  min-height: 0;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  max-height: 100%;
  background: center center / contain no-repeat;
  display: none;
}

.lightbox-close,
.lightbox-nav {
  border: none;
  background: transparent;
  color: inherit;
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav {
  position: static;
  transform: none;
  z-index: 1;
  flex: 0 0 auto;
}

.lightbox-close {
  position: static;
  transform: none;
}

@media (max-width: 650px) {
  .lightbox-nav {
    display: none;
  }

  .lightbox-content {
    padding: 16px 0;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
  }

  .lightbox-stage {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .lightbox-track {
    display: flex;
    gap: 16px;
    height: 100%;
    will-change: transform;
  }

  .lightbox-track.is-dragging {
    transition: none;
  }

  .lightbox-track:not(.is-dragging) {
    transition: transform 0.3s ease-out;
  }

  .lightbox-slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 0;
    min-height: 0;
    height: 100%;
    box-sizing: border-box;
  }

  .lightbox-slide-image {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: contain;
    display: block;
  }

  .lightbox-slide-caption {
    text-align: center;
    flex-shrink: 0;
  }

  .lightbox-footer {
    display: none;
  }

  .lightbox-bar {
    padding: 0 16px;
  }
}

.cats-carousel {
  overflow: hidden;
  width: 100%;
  margin: 0;
}

.cats-track {
  position: relative;
  width: 100%;
}

.cats-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--carousel-transition) ease, visibility var(--carousel-transition) ease;
}

.cats-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Copy link button states */
.project-controls-button[data-copy-link] {
  position: relative;
}

.project-controls-button[data-copy-link] .button-icon__img {
  transition: opacity 200ms ease;
}

.project-controls-button[data-copy-link] .button-icon__img--check {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 24px;
  height: 24px;
  opacity: 0;
}

.project-controls-button[data-copy-link].is-copied .button-icon__img--link {
  opacity: 0;
}

.project-controls-button[data-copy-link].is-copied .button-icon__img--check {
  opacity: 1;
}

/* Copy tooltip */
.copy-tooltip {
  position: fixed;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.96);
  border-radius: 100px;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 13px;
  font-weight: 460;
  line-height: 1.2;
  letter-spacing: -0.003em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 1000;
}

.copy-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tooltip-shake {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(0) translateX(-2px); }
  75% { transform: translateY(0) translateX(2px); }
}

.copy-tooltip.is-shaking {
  animation: tooltip-shake 200ms ease;
}
