@font-face {
  font-family: 'zolinamedium';
  src: url('../fonts/zolina-medium-webfont.woff2') format('woff2'),
       url('../fonts/zolina-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --brown: #84442d;
  --brown-soft: rgba(132, 68, 45, 0.5);
  --cream: #f2ede3;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--cream);
  background-image: url('../assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: var(--brown);
  font-family: Georgia, 'Times New Roman', serif;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  padding: 8vh 6vw;
  overflow: hidden;
  text-align: center;
}

.brand {
  display: flex;
  justify-content: center;
}

.logo {
  width: clamp(220px, 32vw, 420px);
  height: auto;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.coming-soon {
  margin: 0;
  font-family: 'zolinamedium', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 5.5vw, 3.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brown);
}

.divider {
  width: clamp(220px, 32vw, 460px);
  height: 0;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto;
  border: none;
  border-top: 1px solid var(--brown-soft);
}

.social-label {
  display: block;
  margin-bottom: 1rem;
  font-family: -apple-system, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brown);
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 1.6rem);
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--brown);
  font-size: 1.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover,
.social-icons a:focus-visible {
  opacity: 0.7;
  transform: translateY(-2px);
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(132, 68, 45, 0.08);
  pointer-events: none;
}

.deco-circle--1 {
  width: clamp(90px, 12vw, 160px);
  height: clamp(90px, 12vw, 160px);
  right: clamp(-30px, -2vw, 20px);
  bottom: clamp(20px, 6vh, 90px);
}

.deco-circle--2 {
  width: clamp(60px, 8vw, 110px);
  height: clamp(60px, 8vw, 110px);
  right: clamp(80px, 10vw, 160px);
  bottom: clamp(-10px, 2vh, 40px);
}

@media (max-width: 480px) {
  .page {
    gap: 2.5rem;
    padding: 6vh 8vw;
  }

  .social-icons a {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.3rem;
  }
}
