/* ============================================
   @font-face — SaveurSans
   ============================================ */
@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Semi-bold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SaveurSans';
  src: url('fonts/SaveurSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ============================================
   Variables & Reset
   ============================================ */
:root {
  --burgundy: #840424;
  --cream: #EBD3BB;
  --rose: #B66C74;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'SaveurSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--burgundy);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; height: auto; }

/* ============================================
   Layout
   ============================================ */
.soon {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 96px;
  overflow: hidden;
}

/* Soft rose glow behind the content */
.soon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  max-width: 140vw;
  max-height: 140vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(182, 108, 116, 0.28) 0%, rgba(132, 4, 36, 0) 65%);
  pointer-events: none;
}

.soon-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards 0.2s;
}

/* ============================================
   Content
   ============================================ */
.soon-logo {
  max-width: 320px;
  margin: 0 auto 40px;
}

.soon-eyebrow {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.soon-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.soon-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--rose);
  max-width: 480px;
  margin: 0 auto;
}

.soon-rule {
  width: 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  margin: 40px auto;
}

.soon-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.soon-contact a {
  border-bottom: 1px solid rgba(235, 211, 187, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s ease, opacity 0.3s ease;
}

.soon-contact a:hover {
  border-color: var(--cream);
  opacity: 0.85;
}

.soon-sep {
  color: var(--rose);
}

.soon-social {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}

.soon-social a {
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.soon-social a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.soon-year {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  z-index: 1;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.8s;
}

/* ============================================
   Animation
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .soon-inner,
  .soon-year {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 600px) {
  .soon {
    padding: 64px 20px 80px;
  }

  .soon-logo {
    max-width: 220px;
    margin-bottom: 32px;
  }

  .soon-rule {
    margin: 32px auto;
  }

  .soon-contact {
    flex-direction: column;
    gap: 10px;
  }

  .soon-sep {
    display: none;
  }
}
