/* ======================================================
   BASE
====================================================== */

:root {
  --color-white: #ffffff;
  --color-white-soft: rgba(255, 255, 255, 0.76);
  --color-white-muted: rgba(255, 255, 255, 0.58);
  --color-border: rgba(255, 255, 255, 0.22);
  --color-dark: #111111;
  --color-accent: #d8c4ab;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html {
  min-height: 100%;
  background: var(--color-dark);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--color-white);
  background: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 300;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

/* ======================================================
   PAGE
====================================================== */

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.coming-soon__background,
.coming-soon__overlay {
  position: fixed;
  inset: 0;
}

.coming-soon__background {
  z-index: -3;
  background-image: url("/assets/images/background.webp");
  background-position: center;
  background-size: cover;
  animation: backgroundZoom 30s ease-in-out infinite alternate;
}

.coming-soon__overlay {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 8, 0.87) 0%,
      rgba(8, 8, 8, 0.7) 45%,
      rgba(8, 8, 8, 0.38) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.coming-soon__content {
  display: flex;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.5rem);
  flex-direction: column;
}

/* ======================================================
   IDENTITÉ
====================================================== */

.brand {
  animation: contentReveal 900ms ease-out both;
}

.brand__name {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.78;
}

.brand__name strong {
  margin-left: 1.25em;
  color: var(--color-accent);
  font-weight: 500;
  font-style: italic;
}

.brand__subtitle {
  margin: 1.5rem 0 0;
  color: var(--color-white-muted);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1.7;
  text-transform: uppercase;
}

/* ======================================================
   MESSAGE
====================================================== */

.coming-soon__message {
  width: min(100%, 780px);
  margin-block: auto;
  padding-block: clamp(5rem, 12vh, 9rem);
  animation: contentReveal 900ms 180ms ease-out both;
}

.coming-soon__eyebrow {
  display: flex;
  margin: 0 0 1.5rem;
  color: var(--color-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-items: center;
  gap: 1rem;
}

.coming-soon__eyebrow::before {
  width: 3rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.coming-soon h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.91;
  text-wrap: balance;
}

.coming-soon__description {
  max-width: 620px;
  margin: 2rem 0 0;
  color: var(--color-white-soft);
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

/* ======================================================
   CONTACT
====================================================== */

.contact {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  animation: contentReveal 900ms 340ms ease-out both;
}

.contact__intro {
  margin: 0 0 1.25rem;
  color: var(--color-white-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.5rem;
}

.contact__link {
  display: inline-flex;
  color: var(--color-white-soft);
  font-size: 0.88rem;
  align-items: center;
  gap: 0.65rem;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.contact__link:hover {
  color: var(--color-white);
  transform: translateY(-2px);
}

.contact__icon {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials {
  display: flex;
  margin-top: 1.5rem;
  color: var(--color-white-muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  align-items: center;
  gap: 0.85rem;
  text-transform: uppercase;
}

.socials span {
  width: 1.5rem;
  height: 1px;
  background: var(--color-border);
}

.socials a {
  transition: color 180ms ease;
}

.socials a:hover {
  color: var(--color-accent);
}

/* ======================================================
   FOOTER
====================================================== */

.footer {
  display: flex;
  margin-top: 2rem;
  padding-top: 1.25rem;
  color: var(--color-white-muted);
  font-size: 0.68rem;
  justify-content: space-between;
  gap: 1rem;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--color-white-soft);
  transition: color 180ms ease;
}

.footer a:hover {
  color: var(--color-accent);
}

/* ======================================================
   ANIMATIONS
====================================================== */

@keyframes backgroundZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes contentReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 700px) {
  .coming-soon__overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 8, 8, 0.7) 0%,
      rgba(8, 8, 8, 0.82) 55%,
      rgba(8, 8, 8, 0.94) 100%
    );
  }

  .coming-soon__background {
    background-position: 62% center;
  }

  .coming-soon__content {
    padding: 1.75rem 1.4rem;
  }

  .brand__subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.17em;
  }

  .coming-soon__message {
    padding-block: 5rem;
  }

  .coming-soon h1 {
    line-height: 0.96;
  }

  .coming-soon__description {
    line-height: 1.65;
  }

  .contact__links {
    flex-direction: column;
    gap: 0.9rem;
  }

  .footer {
    flex-direction: column;
    line-height: 1.6;
  }
}

/* ======================================================
   ACCESSIBILITÉ
====================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
