@charset "UTF-8";
@font-face {
    font-family: 'Chronicle Display';
    src: url('../ChronicleDisplay-Roman.woff2') format('woff2'),
        url('../ChronicleDisplay-Roman.woff') format('woff'),
        url('../ChronicleDisplay-Roman.ttf') format('truetype'),
        url('../ChronicleDisplay-Roman.svg#ChronicleDisplay-Roman') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
  --bg-color: #06231a;
  --text-color: #ffffff;
  --content-width: min(86vw, 1320px);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: "Cormorant Garamond", "Tinos", "Times New Roman", serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
 h1 {
  margin: 0;
  font-size: clamp(45px, 4vw, 75px);
  margin-bottom: 1rem;
  font-family: "Chronicle Display";
  font-weight: 300;
}
.coming-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background-image: url("../assets/background.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
display: flex;
  align-items: center;
  justify-content: center;
}

/* Extra vignette keeps the center readable on very wide screens. */
.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(6, 35, 26, 0) 0 30%, rgba(3, 18, 14, 0.16) 66%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.coming-soon__content {
  width: 100%;
  min-height: 100vh;
  margin-inline: auto;
  padding: 60px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1140px;

  justify-content: center;
}

.coming-soon__logo {
  width: clamp(230px, 21.9vw, 420px);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.18));
}

.coming-soon__title {
  margin: clamp(22px, 3.1vh, 34px) 0 0;
  color: var(--text-color);
  font-size: clamp(36px, 3.55vw, 68px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
}

.coming-soon__title span {
  display: block;
}

.bottom-art {
  width: clamp(280px, 25.4vw, 487px);
  margin-top: clamp(18px, 2.1vh, 26px);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.22));
}
svg {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .coming-soon__content {
    width: min(90vw, 720px);
    justify-content: center;
    padding-block: 40px;
  }

  .coming-soon__title {
    font-size: clamp(31px, 7vw, 46px);
    line-height: 1.12;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    background-position: center center;
  }

  .coming-soon::before {
    background: rgba(2, 18, 13, 0.26);
  }

  .coming-soon__content {
    width: min(92vw, 420px);
    padding-block: 32px;
  }

  .coming-soon__logo {
    width: min(78vw, 270px);
  }

  .coming-soon__title {
    margin-top: 20px;
    font-size: clamp(26px, 8.6vw, 38px);
    line-height: 1.14;
    letter-spacing: 0.006em;
  }

  .coming-soon__bottom-art {
    width: min(82vw, 310px);
    margin-top: 16px;
  }
}

.coming-soon__title-image {
  width: clamp(620px, 57.25vw, 1099px);
  margin-top: clamp(24px, 3.1vh, 34px);
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.22));
}

@media (max-width: 900px) {
  .coming-soon__title-image {
    width: min(94vw, 720px);
  }
}

@media (max-width: 520px) {
  .coming-soon__title-image {
    width: min(96vw, 420px);
    margin-top: 20px;
  }
}
