
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

@font-face {
  font-family: 'tomfont';
  src: url('https://tomldn.net/fonts/tomfont.woff2') format('woff2'),
       url('https://tomldn.net/fonts/tomfont.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}

.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  margin-top: -3rem;
  width: 100%;
  max-width: 1100px;
}

.logo {
  display: block;
  width: 320px;
  height: auto;
  margin-bottom: 2rem;
}

.hero {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  transform: translateX(-6rem);
}

.frame-stack {
  position: relative;
  width: 420px;
  height: 420px;
  flex-shrink: 0;
}

.photo {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 436px;
  height: 436px;
  object-fit: cover;
  border-radius: 0;
  z-index: 1;
}

.intro {
  max-width: 260px;
  padding-top: 4px;
}

.intro img {
  width: 180%;
  height: auto;
  display: block;
}

.intro-eyebrow {
  font-size: 11px;
  color: #555;
  font-style: italic;
  margin-bottom: 10px;
}

.intro-body {
  font-size: 14px;
  font-family: 'tomfont', sans-serif;
  color: #aaa;
  line-height: 1.75;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  display: block;
  line-height: 0;
}

.nav img {
  display: block;
  height: 36px;
  width: auto;
}

.nav-placeholder {
  color: #333;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px dashed #222;
  padding: 6px 10px;
}

@media (max-width: 600px) {
  .hero {
    flex-direction: column;
    align-items: center;
    transform: none;
    gap: 1rem;
  }

  .intro {
    display: none;
  }

  .frame-stack {
    width: 280px;
    height: 280px;
  }

  .photo {
    width: 292px;
    height: 292px;
    top: -6px;
    left: -6px;
  }

  .nav {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .nav-arrow {
    display: none;
  }
}