* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: #0c0c0d;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}
a { color: #F2F0EB; text-decoration: none; }
a:hover { color: #E5342A; }

#hamburger { display: none; }
#mobile-menu { display: none; flex-direction: column; }
#mobile-menu.open { display: flex; }

@media (max-width: 760px) {
  #desktop-nav { display: none !important; }
  #hamburger { display: flex !important; }
}
@media (min-width: 761px) {
  #mobile-menu { display: none !important; }
}

#promo-reveal { display: none; }
#promo-reveal.open { display: block; }

.founder-photo-box {
  width: 180px;
  height: 220px;
  flex: 0 0 180px;
  background: rgba(242,240,235,0.04);
  border: 1px solid rgba(242,240,235,0.14);
  overflow: hidden;
}
.founder-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .founder-photo-box {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    flex: 1 1 100%;
  }
}
