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

html {
  background: #0b0a08;
  scroll-behavior: smooth;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulse-line {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
body {
  background: #0b0a08;
  color: #f2ede4;
  font-family: "Space Grotesk", sans-serif;
  overflow-x: hidden;
  cursor: default;
}

::-moz-selection {
  background: #d64545;
  color: #f2ede4;
}

::selection {
  background: #d64545;
  color: #f2ede4;
}

a {
  color: inherit;
}

.mono {
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.03em;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #d64545;
  outline-offset: 4px;
}

#smoke {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 1;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(11, 10, 8, 0.55) 100%);
  pointer-events: none;
  z-index: 4;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 56px);
  mix-blend-mode: difference;
  z-index: 50;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.02em;
}

nav ul {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
  font-size: 13px;
}
@media (max-width: 780px) {
  nav ul {
    gap: 14px;
  }
}
@media (max-width: 560px) {
  nav ul li:not(:last-child) {
    display: none;
  }
}

nav a {
  position: relative;
  padding-bottom: 2px;
  text-decoration: none;
}
@media (max-width: 780px) {
  nav a {
    font-size: 11px;
  }
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
nav a:hover::after, nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  min-height: 100svh;
  text-align: center;
  z-index: 5;
}
.hero .eyebrow {
  font-size: 12px;
  color: #d64545;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
  opacity: 0;
  animation: rise 0.9s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: clamp(3.2rem, 12vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: rise 1.1s 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c9c2b4;
}
.hero .sub {
  margin-top: 26px;
  max-width: 520px;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: #c9c2b4;
  opacity: 0;
  animation: rise 0.9s 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero .scroll-hint {
  position: absolute;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: #c9c2b4;
  opacity: 0;
  animation: rise 0.9s 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.scroll-hint .line {
  width: 1px;
  height: 36px;
  background: linear-gradient(#c9c2b4, transparent);
  animation: pulse-line 2s ease-in-out infinite;
}

.darkroom {
  position: relative;
  padding: 6vh 0 24vh;
  z-index: 5;
}
@media (max-width: 560px) {
  .darkroom {
    padding-bottom: 16vh;
  }
}

.darkroom-intro {
  margin: 0 auto 14vh;
  padding: 0 24px;
  max-width: 640px;
  text-align: center;
}
.darkroom-intro .tag {
  font-size: 11px;
  color: #d64545;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  display: block;
  margin-bottom: 16px;
}
.darkroom-intro h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.wire {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.wire svg {
  width: 100%;
  height: 100%;
}
.wire path {
  stroke: rgba(242, 237, 228, 0.32);
  stroke-width: 1.2;
  fill: none;
  stroke-dasharray: 3 7;
}

.card-track {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16vh;
}
@media (max-width: 560px) {
  .card-track {
    gap: 12vh;
  }
}

.card-row {
  position: relative;
  display: flex;
  width: 100%;
}
.card-row:nth-child(odd) {
  justify-content: flex-end;
  padding-right: clamp(6vw, 12vw, 18vw);
}
@media (max-width: 780px) {
  .card-row:nth-child(odd) {
    padding-right: 7vw;
  }
}
.card-row:nth-child(even) {
  justify-content: flex-start;
  padding-left: clamp(6vw, 12vw, 18vw);
}
@media (max-width: 780px) {
  .card-row:nth-child(even) {
    padding-left: 7vw;
  }
}

.peg {
  position: absolute;
  top: -14px;
  width: 14px;
  height: 14px;
  z-index: 3;
}
.peg::before, .peg::after {
  content: "";
  position: absolute;
  background: #d64545;
}
.peg::before {
  width: 14px;
  height: 5px;
  border-radius: 3px;
  top: 0;
  left: 0;
}
.peg::after {
  width: 2px;
  height: 11px;
  left: 6px;
  top: 3px;
  background: #141210;
}
.card-row:nth-child(odd) .peg {
  right: clamp(6vw, 12vw, 18vw);
  margin-right: 24px;
}
@media (max-width: 780px) {
  .card-row:nth-child(odd) .peg {
    right: 7vw;
    margin-right: 18px;
  }
}
.card-row:nth-child(even) .peg {
  left: clamp(6vw, 12vw, 18vw);
  margin-left: 24px;
}
@media (max-width: 780px) {
  .card-row:nth-child(even) .peg {
    left: 7vw;
    margin-left: 18px;
  }
}

.card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  width: min(480px, 82vw);
  background: linear-gradient(160deg, rgba(242, 237, 228, 0.05), rgba(242, 237, 228, 0.02));
  border: 1px solid rgba(242, 237, 228, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 2px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  will-change: transform, opacity;
  transform-origin: top center;
}
@media (max-width: 780px) {
  .card {
    width: min(420px, 86vw);
  }
}
.card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: rgba(242, 237, 228, 0.3);
}
.card .frame-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #c9c2b4;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(242, 237, 228, 0.14);
}
.card .frame-label .dot {
  display: inline-block;
  margin-right: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d64545;
}
.card h3 {
  margin-bottom: 14px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}
.card p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #c9c2b4;
}
.card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 20px;
  padding-top: 16px;
  font-size: 11px;
  color: #c9c2b4;
  border-top: 1px solid rgba(242, 237, 228, 0.14);
}
.card .meta span b {
  font-weight: 400;
  color: #f2ede4;
}
.card .stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.card .stack span {
  padding: 5px 10px;
  font-size: 11px;
  color: #c9c2b4;
  border: 1px solid rgba(242, 237, 228, 0.14);
  border-radius: 20px;
}
.card .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 13px;
  text-decoration: none;
  color: #f2ede4;
  border-bottom: 1px solid #d64545;
  padding-bottom: 2px;
}
.card .cta svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}
.card .cta:hover svg {
  transform: translate(3px, -3px);
}
.card.about {
  background: linear-gradient(160deg, rgba(214, 132, 74, 0.08), rgba(110, 86, 207, 0.05));
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10vh 24px;
  min-height: 80vh;
  text-align: center;
  z-index: 5;
}
.contact .tag {
  font-size: 11px;
  color: #d64545;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
}
.contact h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1.05;
  max-width: 900px;
}
.contact .email {
  margin-top: 40px;
  padding-bottom: 6px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  text-decoration: none;
  border-bottom: 1px solid rgba(242, 237, 228, 0.14);
  transition: border-color 0.3s, color 0.3s;
}
.contact .email:hover {
  border-color: #d64545;
  color: #d64545;
}

footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 56px) 40px;
  font-size: 11px;
  color: #c9c2b4;
  z-index: 5;
}
footer .socials {
  display: flex;
  gap: 20px;
  list-style: none;
}
footer .socials a {
  text-decoration: none;
}
footer .socials a:hover {
  color: #d64545;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .card {
    transform: none !important;
  }
}/*# sourceMappingURL=main.css.map */