:root {
  color-scheme: light;
  --bg: #eef3f8;
  --bg-soft: #e1ebf5;
  --text: #1d1d1d;
  --muted: #5a5a5a;
  --accent: #2b6cb0;
  --accent-dark: #1e4f8a;
  --accent-soft: #d7e7ff;
  --accent-shadow: rgba(43, 108, 176, 0.3);
  --header-bg: rgba(30, 79, 138, 0.12);
  --card: #ffffff;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --services-bg: #f28a2e;
  --quote-start: #2b6cb0;
  --quote-end: #6aa9ff;
  --logo-size: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  background: linear-gradient(180deg, #dbeeff 0%, #39424d 100%);
  color: var(--text);
}

.about-page {
  background: linear-gradient(180deg, #dbeeff 0%, #8b919a 100%);
}

.project-page {
  background: linear-gradient(180deg, #dbeeff 0%, #2a466a 100%);
}

html[data-theme="wild"] body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top left, #0c1c2a 0%, #091423 50%, #05101c 100%);
}

html[data-theme="wild"] .project-page .detail-card,
html[data-theme="wild"] .project-page .detail-card * {
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
}

html[data-theme="wild"] .project-page .detail-card {
  background: rgba(214, 226, 238, 0.8);
  border-color: #3b3f46;
}

html[data-theme="wild"] .project-page .detail-card h3,
html[data-theme="wild"] .project-page .detail-card p,
html[data-theme="wild"] .project-page .detail-card ul,
html[data-theme="wild"] .project-page .detail-card li {
  color: #3b3f46;
}

html[data-theme="wild"] .imprint-layout .detail-card {
  color: #1d1d1d;
}

html[data-theme="wild"] .imprint-layout .detail-card h3 {
  color: #1d1d1d;
}

html[data-theme="wild"] .imprint-layout .detail-card p {
  color: #4d4d4d;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: var(--logo-size);
  width: auto;
}

.header-logo--wild {
  display: none;
}

html[data-theme="wild"] .header-logo--default {
  display: none;
}

html[data-theme="wild"] .header-logo--wild {
  display: block;
}

.nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
  align-items: center;
}

.nav a {
  position: relative;
  padding-bottom: 4px;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus::after {
  width: 100%;
}

.nav a.is-active::after {
  width: 100%;
}

.hero {
  padding: 120px 0 90px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-logo {
  width: min(260px, 60vw);
  height: min(260px, 60vw);
  object-fit: contain;
  margin-bottom: 36px;
  display: block;
}

.hero-logo--wild {
  display: none;
}

html[data-theme="wild"] .hero-logo--default {
  display: none;
}

html[data-theme="wild"] .hero-logo--wild {
  display: block;
}

.hero-title {
  margin: 0 0 16px;
  font-family: "Roboto", system-ui, -apple-system, sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-pretitle {
  font-size: 1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero-title-sub {
  display: block;
  margin-top: 8px;
  font-size: 0.64em;
  font-weight: 500;
  color: var(--muted);
}

.hero-title-sub--small {
  margin-top: 4px;
  font-size: 0.52em;
}

.hero-intro {
  margin: 0 0 28px;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--muted);
  line-height: 1.6;
}

.role {
  margin: 12px 0;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  color: var(--muted);
}

.hero-actions {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px var(--accent-shadow);
}

.button.ghost {
  border: 1px solid var(--text);
}

.project-page .button-back {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.hero-photo {
  display: grid;
  gap: 12px;
  justify-items: center;
  justify-self: end;
}

.photo-frame {
  width: min(50vw, 520px);
  aspect-ratio: 16 / 15;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: #dbe9f8;
  transition: transform 0.35s ease-in-out, box-shadow 0.35s ease-in-out;
  transform: none;
  position: relative;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  transition: transform 0.35s ease-in-out;
  transform-origin: center;
}

.hero-image--wild {
  display: none;
}

html[data-theme="wild"] .hero-image--default {
  display: none;
}

html[data-theme="wild"] .hero-image--wild {
  display: block;
}

.hero-photo:hover .hero-image,
.photo-frame:hover .hero-image {
  transform: scale(1.05) rotate(-3deg);
}

.hero-photo:hover .photo-frame,
.photo-frame:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transform: scale(1.05) rotate(3deg);
}

.photo-caption {
  color: var(--muted);
  font-size: 0.95rem;
}

.projects {
  padding: 60px 0 120px;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 360px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.12);
}

.project-card-link {
  display: grid;
  grid-template-rows: 180px 1fr;
  height: 100%;
  color: inherit;
}

.project-image {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  border-radius: 0;
}

.project-image[data-theme="sunset"] {
  background: linear-gradient(120deg, #dbe9f8, #4a90e2, #1e3d6b);
}

.project-image[data-theme="coral"] {
  background: linear-gradient(120deg, #e6f0ff, #6aa9ff, #c7ddff);
}

.project-image[data-theme="graphite"] {
  background: linear-gradient(120deg, #eef3f8, #2c2c2c, #2b6cb0);
}

.project-body {
  padding: 22px;
  display: grid;
  gap: 10px;
}

.project-body h3 {
  margin: 0;
  font-size: 1.3rem;
}

.project-sub {
  margin: 0;
  font-weight: 600;
  color: var(--accent-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.project-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.services {
  padding: 132px 0;
  background: var(--services-bg);
}

.services-inner {
  display: grid;
  gap: 28px;
}

.services h2 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.services p {
  color: var(--muted);
}

.services-copy h2,
.services-copy p {
  color: white;
}

.services-list {
  display: grid;
  gap: 16px;
  width: 75%;
  margin: 29px auto 0;
}

.service-card {
  background: white;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card[open] {
  transform: translateY(-4px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.12);
}

.service-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 31px;
  font-weight: 600;
  font-size: 1.05rem;
}

.service-card summary::-webkit-details-marker {
  display: none;
}

.service-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 700;
  transition: transform 0.2s ease;
}

.service-card[open] .service-toggle {
  transform: rotate(45deg);
}

.service-content {
  padding: 0 31px 31px;
  display: grid;
  gap: 12px;
}

.service-content p {
  margin: 0;
  color: var(--muted);
}

.service-media {
  height: 340px;
  border-radius: 16px;
  background: linear-gradient(120deg, #dbe9f8, #2b6cb0);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-media[data-service="uxui"] {
  background: linear-gradient(120deg, #dbe9f8, #6aa9ff, #1e3d6b);
}

.service-media[data-service="uxcheck"] {
  background-image: url("assets/services/uxcheck.png");
}

.service-media[data-service="facilitation"] {
  background-image: url("assets/services/lego.png");
}

.service-media[data-service="workshops"] {
  background-image: url("assets/services/workshops.png");
}

.clients {
  padding: 140px 0 205px;
  background: #666666;
}

.clients-title {
  margin: -50px 0 58px;
  color: #f5f5f5;
  text-align: center;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 6px 8px;
  align-items: center;
  justify-items: center;
}

.clients-grid img {
  width: 100%;
  max-width: 140px;
  height: auto;
  object-fit: contain;
}

.quote {
  padding: 198px 0 226px;
  background: linear-gradient(120deg, var(--quote-start) 0%, var(--quote-end) 100%);
  color: white;
}

.quote-inner {
  display: grid;
  gap: 20px;
}

blockquote {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
}

cite {
  font-style: normal;
  font-weight: 600;
}

.contact {
  padding: 190px 0;
  background: var(--bg-soft);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.contact h2 {
  margin: 0 0 8px;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
}

.contact p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.project-hero {
  padding: 96px 0 40px;
}

.project-hero-inner {
  display: grid;
  gap: 18px;
}

.imprint-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.imprint-cards {
  display: grid;
  gap: 22px;
}

.imprint-side {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.imprint-side img {
  width: min(358px, 65vw);
  height: auto;
  display: block;
  transform: rotate(-3deg);
}

.project-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.project-subhead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  max-width: 720px;
}

.project-gallery {
  padding: 40px 0 90px;
}

.project-gallery--extra {
  padding-top: 0;
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-gallery-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-gallery-grid--four .project-figure {
  aspect-ratio: 354 / 560;
  overflow: auto;
}

.project-gallery-grid--four .project-figure img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}

.project-figure {
  margin: 0;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.project-figure img {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.project-details {
  padding: 50px 0 90px;
}

.project-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-date {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.detail-card {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.detail-card--wide {
  grid-column: 1 / -1;
}

.detail-card--lift {
  margin-top: -100px;
}

.detail-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.detail-card p,
.detail-card ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.detail-card ul {
  padding-left: 18px;
}

.detail-card li {
  margin: 0 0 6px;
}

.project-nav {
  padding: 30px 0 90px;
}

.project-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.project-nav .button {
  min-width: 180px;
}

.project-pagination {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
}

.project-pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.project-pagination-dot:hover,
.project-pagination-dot:focus-visible {
  transform: scale(1.18);
  background: rgba(255, 255, 255, 0.95);
}

.project-pagination-dot.is-active {
  width: 20px;
  background: #ffffff;
  transform: none;
}

html[data-theme="wild"] .project-pagination-dot {
  background: rgba(221, 255, 215, 0.45);
}

html[data-theme="wild"] .project-pagination-dot:hover,
html[data-theme="wild"] .project-pagination-dot:focus-visible {
  background: rgba(221, 255, 215, 0.85);
}

html[data-theme="wild"] .project-pagination-dot.is-active {
  background: #ddffd7;
}

.timeline {
  padding: 20px 0 140px;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: 32px;
  align-items: stretch;
}

.timeline-inner {
  position: relative;
  padding-left: 0;
  padding-bottom: 90px;
}

.timeline-inner::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 0;
  bottom: 26px;
  width: 2px;
  background: var(--accent);
  opacity: 0.7;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 60px 1fr;
  align-items: start;
  margin-bottom: 0;
  transition: margin-bottom 0.3s ease-in-out;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 90px;
  top: 30px;
  width: 50px;
  height: 2px;
  background: var(--accent);
  opacity: 0.7;
  transition: height 0.2s ease;
}

.timeline-item:hover::before,
.timeline-item:focus-within::before {
  height: 4px;
}

.timeline-dot {
  position: absolute;
  left: 83px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--accent-shadow);
}

.timeline-year {
  grid-column: 1;
  position: sticky;
  top: 120px;
  align-self: start;
  width: 80px;
  padding-right: 10px;
  text-align: right;
  font-weight: 700;
  color: var(--muted);
}

.timeline-card {
  grid-column: 3;
  background: var(--card);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  transform: scale(0.75);
  transform-origin: left top;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  max-width: 780px;
}

.timeline-card--linked {
  cursor: pointer;
}

.timeline-card:hover,
.timeline-card:focus,
.timeline-card:focus-visible,
.timeline-card:focus-within {
  transform: scale(0.7875);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.18);
}

.timeline-date {
  margin: 0 0 8px;
  font-weight: 700;
  color: var(--accent-dark);
}

.timeline-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
}

.timeline-aside {
  display: flex;
  justify-content: flex-end;
  align-self: stretch;
}

.timeline-sticky {
  position: sticky;
  top: calc(84px + 30px);
  align-self: start;
}

.timeline-sticky img {
  width: min(320px, 28vw);
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.timeline-end {
  position: absolute;
  left: 90px;
  bottom: 10px;
  padding-left: 60px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline-end::before {
  content: "";
  position: absolute;
  left: 0;
  top: -16px;
  width: 30px;
  height: 30px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 0 18px;
  opacity: 0.7;
}

.timeline-role {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 600;
}

.timeline-desc {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.55;
}

.timeline-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.timeline-tags li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 0.85rem;
  font-weight: 600;
}

.timeline-project-links {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.timeline-project-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.timeline-project-link:hover,
.timeline-project-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  background: #2b2b2b;
  color: #e8e8e8;
  padding: 50px 0 60px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-logo {
  height: var(--logo-size);
  width: auto;
}

.footer-logo--arrow {
  display: none;
}

.footer-logo-link:hover .footer-logo--arrow,
.footer-logo-link:focus-visible .footer-logo--arrow {
  display: block;
}

.footer-logo-link:hover .footer-logo--main,
.footer-logo-link:focus-visible .footer-logo--main {
  display: none;
}

.footer-logo-link {
  display: inline-flex;
  width: fit-content;
  height: fit-content;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.site-footer h3 {
  margin-top: 0;
  color: white;
}

.site-footer a {
  color: #f0f0f0;
}

.theme-bar {
  padding: 18px 0 6px;
}

.theme-bar-inner {
  display: flex;
  justify-content: flex-end;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.theme-option {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}

.theme-option .material-icons {
  font-size: 16px;
  line-height: 1;
}

html:not([data-theme="wild"]) .theme-option[data-state="default"] {
  color: var(--accent);
}

html[data-theme="wild"] .theme-option[data-state="wild"] {
  color: var(--accent);
}

.switch {
  position: relative;
  width: 36px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  transition: background 0.2s ease;
}

.slider::before {
  content: "";
  position: absolute;
  height: 14px;
  width: 14px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

.switch input:checked + .slider {
  background: var(--accent);
}

.switch input:checked + .slider::before {
  transform: translateX(16px);
}

html[data-theme="wild"] {
  color-scheme: dark;
  --bg: #0c1c2a;
  --bg-soft: #112235;
  --text: #f6f7f8;
  --muted: #b0bfd0;
  --accent: #7cff6b;
  --accent-dark: #45c83b;
  --accent-soft: #ddffd7;
  --accent-shadow: rgba(124, 255, 107, 0.25);
  --header-bg: rgba(10, 18, 28, 0.6);
  --card: #0f1b2b;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  --services-bg: #0bd3b8;
  --quote-start: #00c2ff;
  --quote-end: #7cff6b;
}

html[data-theme="wild"] * {
  border-radius: 0 !important;
}

html[data-theme="wild"] .slider::before {
  border-radius: 0 !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}

html[data-theme="wild"] .project-image {
  background: linear-gradient(120deg, #0c1c2a, #7cff6b);
}

html[data-theme="wild"] .button.primary {
  color: #1b1b1b;
}

html[data-theme="wild"] .services .service-content p,
html[data-theme="wild"] .services .service-content .text-link {
  color: #3a3a3a;
}

html[data-theme="wild"] .services .service-card summary {
  color: #3a3a3a;
}

html[data-theme="wild"] .project-image[data-theme="sunset"] {
  background: linear-gradient(120deg, #0c1c2a, #00c2ff, #7cff6b);
}

html[data-theme="wild"] .project-image[data-theme="coral"] {
  background: linear-gradient(120deg, #0c1c2a, #00ffd5, #7cff6b);
}

html[data-theme="wild"] .project-image[data-theme="graphite"] {
  background: linear-gradient(120deg, #0c1c2a, #1f3b52, #7cff6b);
}

html[data-theme="wild"] .service-media {
  background: linear-gradient(120deg, #0c1c2a, #00c2ff);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[data-theme="wild"] .service-media[data-service="uxui"] {
  background: linear-gradient(120deg, #0c1c2a, #7cff6b, #00c2ff);
}

html[data-theme="wild"] .service-media[data-service="uxcheck"] {
  background-image: url("assets/services/uxcheck.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[data-theme="wild"] .service-media[data-service="facilitation"] {
  background-image: url("assets/services/lego.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html[data-theme="wild"] .service-media[data-service="workshops"] {
  background-image: url("assets/services/workshops.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo {
    justify-self: center;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .project-gallery-grid,
  .project-details-grid {
    grid-template-columns: 1fr;
  }

  .imprint-layout {
    grid-template-columns: 1fr;
  }

  .timeline-layout {
    grid-template-columns: 1fr;
  }

  .timeline-aside {
    order: -1;
    justify-content: center;
    margin-bottom: 24px;
  }

  .timeline-sticky {
    position: static;
  }

  .timeline-sticky img {
    width: min(360px, 70vw);
  }

  .timeline-inner {
    padding-left: 0;
  }

  .timeline-inner::before,
  .timeline-item::before,
  .timeline-dot,
  .timeline-year {
    display: none;
  }

  .timeline-card {
    transform: scale(1);
  }

  .timeline-item {
    margin-bottom: 48px;
  }

  .project-nav-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .project-nav .button {
    min-width: 0;
    white-space: nowrap;
  }

  .project-nav .button-back {
    grid-column: 1;
    justify-self: start;
  }

  .project-nav .button.primary {
    grid-column: 3;
    justify-self: end;
  }

  .project-pagination {
    grid-column: 2;
    justify-self: center;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .services-list {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    gap: 16px;
  }

  .theme-bar-inner {
    justify-content: center;
  }

  .hero {
    padding-top: 60px;
  }

  .project-nav-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .project-pagination {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .project-nav .button-back {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .project-nav .button.primary {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .project-nav {
    padding-top: 0%;
  }

  .project-nav-inner {
    row-gap: 10px;
  }

  .project-pagination {
    margin-bottom: 20px;
  }
}


/* Lena project */
.project-page.project-page--lena {
  background:
    radial-gradient(circle at 50% 36%, rgba(196, 175, 255, 0.34) 0%, rgba(196, 175, 255, 0) 34%),
    linear-gradient(90deg, #6878e6 0%, #726ad8 52%, #734cbf 100%);
}

html[data-theme="wild"] body.project-page.project-page--lena {
  background:
    radial-gradient(circle at 50% 36%, rgba(196, 175, 255, 0.34) 0%, rgba(196, 175, 255, 0) 34%),
    linear-gradient(90deg, #6878e6 0%, #726ad8 52%, #734cbf 100%);
}

.project-gallery-grid--single {
  grid-template-columns: 1fr;
  place-items: center;
}

.project-figure--round {
  width: min(560px, 72vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

.project-figure--round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}


html:not([data-theme="wild"]) .project-page.project-page--lena .project-subhead,
html:not([data-theme="wild"]) .project-page.project-page--lena .project-date {
  color: #ffffff;
}

html:not([data-theme="wild"]) .project-page.project-page--lena .theme-option .material-icons {
  color: #000000;
}

.project-page.project-page--lena .project-link-highlight {
  display: inline-block;
  margin-left: 0.35em;
  padding: 0.12em 0.45em;
  border-radius: 999px;
  background: #3a3a3a;
  color: #f5f5f5;
}

html[data-theme="wild"] .project-page.project-page--lena .project-link-highlight {
  background: #3a3a3a;
  color: #f5f5f5;
}
