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

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0B1220;
  color: #EDE8D8;
}

/* Background */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg::before{
  content:"";
  position:absolute;
  inset:-25%;
  background:
    radial-gradient(circle at 25% 45%, rgba(180,140,40,0.32), transparent 60%),
    radial-gradient(circle at 75% 55%, rgba(20,50,140,0.40), transparent 55%),
    radial-gradient(circle at 52% 28%, rgba(100,55,160,0.22), transparent 52%);
  background-size:200% 200%;
  background-repeat:no-repeat;
  animation: drift 70s ease-in-out infinite;
}

@keyframes drift{
  0%{
    transform:translate(-10%,-8%);
    background-position:25% 45%,75% 55%,52% 28%;
  }

  50%{
    transform:translate(10%,8%);
    background-position:62% 68%,28% 72%,58% 38%;

  }

  100%{
    transform:translate(-10%,-8%);
    background-position:25% 45%,75% 55%,52% 28%;
  }

}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  opacity: 0;
  animation: fadein 1.4s ease forwards;
  animation-delay: 0.2s;
}

@keyframes fadein {
  to { opacity: 1; }
}

.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 60px;
}

/* Header */
.top {
  width: 100%;
  padding: 32px 0;
}

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

.logo-img {
  height: 64px;
  width: auto;
  opacity: 0.94;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  line-height: 1.12;
}

.brand-text span {
  font-size: 0.89rem;
  font-weight: 300;
  letter-spacing: 1.4px;
  color: #EDE8D8;
}

.brand-text span:last-child {
  color: #D4A843;
}

/* Main */
.center {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 0 6vh;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}

.headline {
  font-size: clamp(1.9rem, 3.2vw, 6rem);
  font-weight: 200;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #EDE8D8;
}

.headline em {
  display: block;
  margin-top: 2px;
  font-style: normal;
  font-size: clamp(3rem, 5.2vw, 9.5rem);
  font-weight: 700;
  letter-spacing: 3px;
  color: transparent;
  -webkit-text-stroke: 2px #D4A843;
}



.description{
  font-size:0.82rem;
  font-weight:300;
  line-height:1.9;
  color:#7A7367;
  max-width:520px;
}

.tagline {
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 2.2;
  color: #B7A98F;
  letter-spacing: 2.6px;
  text-transform: uppercase;
}

/* Footer */
.bottom {
  width: 100%;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(212, 168, 67, 0.08);
}

.bottom .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-label {
  margin-bottom: 4px;
  font-size: 0.58rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #B7A98F;
}

.contact a {
  font-size: 0.72rem;
  font-weight: 300;
  color: #7C705D;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.25s ease;
}

.contact a:hover {
  color: #D4A843;
}

.copy {
  font-size: 0.58rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A4D36;
  text-align: right;
  line-height: 2;
}

/* Responsive */
@media (max-width: 640px) {
  html,
  body {
    overflow: auto;
  }

  .page {
    min-height: 100svh;
  }

  .inner {
    padding: 0 30px;
  }

  .top {
    padding: 28px 0;
  }

  .brand {
    gap: 16px;
  }

  .logo-img {
    height: 44px;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .center {
    padding: 40px 0 80px;
    align-items: flex-start;
  }

  .description {
    max-width: 100%;
  }

  .tagline {
    letter-spacing: 1.8px;
  }

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

  .copy {
    text-align: left;
  }
}
