body {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background: #111;
  color: #211a0f;
  scroll-behavior: smooth;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

html {
  scroll-snap-type: y mandatory;
  height: 100%;
}

a {
  color: #907c26;
  transition: all .5s ease;
  font-weight: 500;
}

a:hover {
  opacity: .6;
}

h2 {
  font-size: 1.68em;
  font-weight: 300;
  margin: 1em 0 .75em
}

p b {
  font-weight: 500;
}

li:not(:last-of-type) {
margin-bottom: .5em;
}

.avatar > * {
  width: 10em;
}

.grid_2 {
  display: flex;
  margin: 1.5em 0 0;
  gap: 1.5em;
  align-items: center;
}

.screen {
  min-height: 100vh;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  position: relative;
}

.screen1 {
  background: linear-gradient(135deg, #dcd3b2 0%, #ffffff 100%);
}

.screen2 {
  background: linear-gradient(135deg, #edeae3 0%, #F7F7F7 100%);
}

.screen3 {
  background: linear-gradient(135deg, #F7F7F7 0%, #ffffff 100%);
}

.logo {
  margin: 2em 6em 6em 4em;
}

.logo img {
  max-width: 60em;
  width: 100%;
  height: auto;
}

.logo_text img {
  max-width: 10em;
  width: 100%;
  height: auto;
  margin-bottom: .5em;
}

.text {
  font-size: 1em;
  line-height: 150%;
  width: 100vw;
  max-width: 36em;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  padding: 2em;
  position: relative;
}
.text > *:not(.logo-blob) {
  position: relative;
  z-index: 2;
}

.logo-blob {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18em;
  height: 7em;
  transform: translate(-50%, -50%) scale(1);
  background: linear-gradient(90deg, #f5f5f5 0%, #dcd3b2 60%, #d3bd5e 100%);
  filter: blur(32px) brightness(1.08);
  opacity: 0;
  border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(.4,2,.6,1), width 0.35s cubic-bezier(.4,2,.6,1), height 0.35s cubic-bezier(.4,2,.6,1), opacity 0.3s;
  pointer-events: none;
}

/* Burger menu styles */
.burger {
  position: fixed;
  top: 2em;
  right: 2em;
  z-index: 1001;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: background 0.2s;
}
.burger:hover {
  background: #f7f7f7;
}
.burger span {
  display: block;
  width: 24px;
  height: 3px;
  background: #907c26;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(.4,2,.6,1);
}
.burger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Side menu styles */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 260px;
  background: rgba(255,255,255,0.98);
  box-shadow: -2px 0 24px rgba(0,0,0,0.08);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.4,2,.6,1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.side-menu.open {
  transform: translateX(0);
}
.side-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.side-menu li {
  margin: 1.5em;
}
.side-menu a {
  color: #907c26;
  font-size: 1.25em;
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.5s ease;
}
.side-menu a:hover {
  color: #000;
}

.transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fffbe6;
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transition: opacity 0.4s;
}
.transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.transition-overlay.dot-anim {
  transform-origin: center center !important;
}

.screen1 .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 2.5em;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: scroll-bounce 1.6s infinite;
  opacity: 0.85;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(18px);
  }
}

.scroll-down svg {
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 2px 6px rgba(144,124,38,0.08));
}

.scroll-down--grey svg path {
  stroke: #b0b0b0 !important;
}

.screen2 .scroll-down {
  position: absolute;
  left: 50%;
  bottom: 2.5em;
  transform: translateX(-50%);
  z-index: 2;
  cursor: pointer;
  animation: scroll-bounce 1.6s infinite;
  opacity: 0.7;
}

.copyright {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3em;
  text-align: center;
  font-size: 0.75em;
  color: #b0b0b0;
  letter-spacing: 0.02em;
  margin: 0;
}

.screen2 .logo_text, .screen3 .logo_text {
  position: relative;
  z-index: 1;
}


@media (max-width: 600px) {
  .side-menu {
    width: 100vw;
  }
  .burger {
    top: 1em;
    right: 1em;
    width: 40px;
    height: 40px;
  }
  .burger span {
    width: 20px;
  }
} 