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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #05060a;
  color: #f7f7ff;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    to bottom,
    rgba(5, 6, 10, 0.95),
    rgba(5, 6, 10, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #05060a;
  background: conic-gradient(
    from 140deg,
    #ffb347,
    #ff6b9c,
    #8a6bff,
    #36d1dc,
    #ffb347
  );
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1),
    0 12px 30px rgba(0, 0, 0, 0.55);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 15px;
  font-weight: 600;
}

.brand-tagline {
  font-size: 12px;
  opacity: 0.7;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  opacity: 0.8;
  transition: opacity 150ms ease, color 150ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffb347, #ff6b9c);
  transform-origin: center;
  transform: scaleX(0);
  transition: transform 180ms ease-out;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: 72px 0 40px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-text {
  max-width: 720px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

h1 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-subtitle {
  margin: 0 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(240, 240, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.btn {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease,
    background 120ms ease, border-color 120ms ease, color 120ms ease;
}

.btn.primary {
  background: linear-gradient(135deg, #ffb347, #ff6b9c);
  color: #05060a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(12, 14, 22, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.btn.ghost:hover {
  background: rgba(20, 22, 32, 0.98);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #171827, #05060a);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.meta-item {
  min-width: 140px;
}

.meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 3px;
}

.meta-value {
  font-size: 13px;
  opacity: 0.92;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: radial-gradient(circle at top, #111227, #05060a);
}

.section-header {
  margin-bottom: 18px;
}

.section-header.center {
  text-align: center;
}

.section h2 {
  font-size: 24px;
  margin: 0 0 6px;
}

.section-kicker {
  margin: 0;
  font-size: 14px;
  color: rgba(235, 235, 255, 0.75);
}

.section-body {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(235, 235, 255, 0.88);
}

.section-body p {
  margin-top: 0;
  margin-bottom: 12px;
}

.education-note {
  font-size: 14px;
  color: rgba(235, 235, 255, 0.75);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 40px;
  align-items: flex-start;
}

.pill-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pill-group h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 8px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 12, 18, 0.9);
  color: rgba(245, 245, 255, 0.9);
}

.pill.small {
  font-size: 11px;
  padding: 4px 8px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.project-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, #17182a, #080914);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}

.project-card-image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.project-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 320ms ease;
  z-index: 0;
}

.project-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 10, 16, 0.35) 0%,
    rgba(8, 10, 16, 0.68) 45%,
    rgba(8, 10, 16, 0.9) 100%
  );
  z-index: 1;
}

.project-card-image:hover::before {
  transform: scale(1.08);
}

.project-card:focus-visible {
  outline: 2px solid #36d1dc;
  outline-offset: 2px;
}

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

.project-meta {
  margin-bottom: 10px;
}

.project-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.64);
}

.project-title {
  margin: 4px 0 0;
  font-size: 18px;
}

.project-summary {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(235, 235, 255, 0.86);
}

.project-list {
  padding-left: 18px;
  margin: 8px 0 10px;
  font-size: 13px;
  color: rgba(230, 230, 255, 0.86);
}

.project-list li {
  margin-bottom: 4px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-card-highlight {
  border-color: rgba(255, 182, 193, 0.2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 182, 193, 0.08);
}

.project-link {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: #ffbcd5;
}

.project-link:hover {
  text-decoration: underline;
}

.project-detail {
  padding: 64px 0 40px;
}

.project-detail-header {
  max-width: 760px;
  margin-bottom: 22px;
}

.project-detail-header h1 {
  margin-bottom: 10px;
}

.project-detail-media {
  margin-bottom: 24px;
}

.project-video {
  width: 100%;
  max-height: 620px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #090b12;
  display: block;
}

.project-editorial {
  background: #f3f1ec;
  color: #141414;
}

.home-editorial {
  background: #f3f1ec;
  color: #141414;
}

.home-editorial .site-header {
  background: rgba(243, 241, 236, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.home-editorial .brand-mark {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 6px 20px rgba(0, 0, 0, 0.12);
}

.home-editorial .site-nav a,
.home-editorial .brand-tagline {
  color: rgba(20, 20, 20, 0.78);
}

.home-editorial .site-nav a:hover {
  color: #121212;
}

.home-editorial .eyebrow {
  color: rgba(0, 0, 0, 0.54);
}

.home-editorial h1 {
  font-size: clamp(36px, 6vw, 54px);
  letter-spacing: -0.02em;
}

.home-editorial .hero-subtitle,
.home-editorial .section-body,
.home-editorial .section-body p,
.home-editorial .timeline-summary,
.home-editorial .timeline-list,
.home-editorial .section-kicker {
  color: rgba(20, 20, 20, 0.82);
}

.home-editorial .hero-meta {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0;
}

.home-editorial .meta-label {
  color: rgba(20, 20, 20, 0.58);
}

.home-editorial .meta-value {
  color: rgba(20, 20, 20, 0.88);
}

.home-editorial .btn.primary {
  background: #121212;
  color: #f3f1ec;
  box-shadow: none;
}

.home-editorial .btn.primary:hover {
  transform: none;
  box-shadow: none;
  background: #000;
}

.home-editorial .btn.ghost {
  border-color: rgba(20, 20, 20, 0.28);
  background: transparent;
  color: #121212;
}

.home-editorial .btn.ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.home-editorial .section.alt {
  background: transparent;
}

.home-editorial .section-header.center {
  text-align: left;
}

.home-editorial .section h2 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.01em;
}

.home-editorial .pill {
  border-color: rgba(0, 0, 0, 0.2);
  background: transparent;
  color: rgba(20, 20, 20, 0.9);
}

.home-editorial .pill-group h3,
.home-editorial .timeline-period,
.home-editorial .contact-label {
  color: rgba(20, 20, 20, 0.58);
}

.home-editorial .project-card {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  box-shadow: none;
}

.home-editorial .project-card.project-card-image {
  border-color: rgba(0, 0, 0, 0.24);
}

.home-editorial .project-label,
.home-editorial .project-summary,
.home-editorial .project-link {
  color: rgba(20, 20, 20, 0.84);
}

.home-editorial .project-card.project-card-image .project-title,
.home-editorial .project-card.project-card-image .project-label,
.home-editorial .project-card.project-card-image .project-summary,
.home-editorial .project-card.project-card-image .project-link {
  color: rgba(245, 245, 245, 0.98);
}

.home-editorial .project-card.project-card-image .pill {
  color: rgba(245, 245, 245, 0.94);
  border-color: rgba(255, 255, 255, 0.28);
}

.home-editorial .timeline {
  border-left: 1px solid rgba(0, 0, 0, 0.18);
}

.home-editorial .timeline-item::before {
  background: #121212;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.home-editorial .education-note,
.home-editorial .contact-value {
  color: rgba(20, 20, 20, 0.82);
}

.home-editorial .contact-value a,
.home-editorial .project-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-editorial .site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  background: #f3f1ec;
}

.home-editorial .footer-inner,
.home-editorial .footer-note {
  color: rgba(20, 20, 20, 0.7);
}

.project-editorial .site-header {
  background: rgba(243, 241, 236, 0.92);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.project-editorial .brand-mark {
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 6px 20px rgba(0, 0, 0, 0.12);
}

.project-editorial .site-nav a,
.project-editorial .brand-tagline {
  color: rgba(20, 20, 20, 0.78);
}

.project-editorial .site-nav a:hover {
  color: #121212;
}

.project-article {
  max-width: 920px;
}

.project-editorial .project-detail {
  padding-top: 74px;
}

.project-editorial .project-detail-header {
  max-width: 780px;
  margin-bottom: 28px;
}

.project-editorial .eyebrow {
  color: rgba(0, 0, 0, 0.54);
  margin-bottom: 8px;
}

.project-editorial .project-detail-header h1 {
  font-size: clamp(34px, 5vw, 52px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.project-status {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
}

.project-quote {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-left: 3px solid #121212;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(18, 18, 18, 0.9);
}

.project-editorial .hero-subtitle {
  color: rgba(20, 20, 20, 0.78);
  max-width: 700px;
}

.project-editorial .btn.ghost {
  border-color: rgba(20, 20, 20, 0.28);
  background: transparent;
  color: #121212;
}

.project-editorial .btn.ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.project-editorial .project-detail-media h2,
.project-editorial .project-credits h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.project-editorial .project-video {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #000;
  max-height: none;
  width: min(100%, 440px);
}

.project-copy {
  max-width: 760px;
  margin: 8px 0 26px;
}

.project-copy p {
  margin: 0 0 14px;
  line-height: 1.75;
  color: rgba(20, 20, 20, 0.86);
}

.media-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: rgba(230, 230, 255, 0.75);
  background: rgba(12, 14, 22, 0.7);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
}

.gallery-item {
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0;
  margin: 0;
  background: #000;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  width: 100%;
}

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

.gallery-item .media-placeholder {
  min-height: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  color: rgba(20, 20, 20, 0.58);
  padding: 12px;
}

.gallery-trigger {
  border: 0;
  background: #000;
  padding: 0;
  margin: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.gallery-trigger:focus-visible {
  outline: 2px solid #36d1dc;
  outline-offset: -2px;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.lightbox-image {
  max-width: min(90vw, 900px);
  max-height: 84vh;
  width: auto;
  height: auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(10, 10, 10, 0.5);
  color: #fff;
  cursor: pointer;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  font-size: 14px;
  padding: 8px 12px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev {
  left: 16px;
}

.lightbox-next {
  right: 16px;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 8px 0 24px;
}

.project-links a {
  font-size: 14px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.project-credits {
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  padding-top: 16px;
  margin-bottom: 12px;
}

.project-credits p {
  margin: 0;
  color: rgba(20, 20, 20, 0.82);
}

.timeline {
  margin-top: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.timeline-item {
  position: relative;
  padding-left: 8px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffb347, #ff6b9c);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.timeline-meta {
  margin-bottom: 4px;
}

.timeline-period {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.timeline-title {
  margin: 3px 0 4px;
  font-size: 17px;
}

.timeline-summary {
  font-size: 14px;
  color: rgba(235, 235, 255, 0.86);
  margin: 0 0 4px;
}

.timeline-list {
  padding-left: 18px;
  margin: 4px 0 0;
  font-size: 13px;
  color: rgba(225, 225, 255, 0.86);
}

.timeline-list li {
  margin-bottom: 3px;
}

.contact-block {
  margin-top: 14px;
}

.contact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 2px;
}

.contact-value {
  margin: 0;
  font-size: 14px;
}

.contact-value a {
  color: #1f4a7a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-value a:hover {
  color: #163859;
}

.email-obfuscated > .email-decoy {
  display: none;
}

.email-obfuscated > .email-decoy-alt {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0 20px;
  background: #05060a;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: rgba(210, 210, 240, 0.8);
}

.footer-note {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 16px;
  }

  .site-nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-meta {
    flex-direction: column;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .timeline {
    margin-left: 4px;
  }
}

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

  .hero {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}

