:root {
  --ink: #282210;
  --muted: #6f644d;
  --olive: #6f7b05;
  --gold: #b48637;
  --gold-soft: #d9c09a;
  --paper: #f8f3ea;
  --porcelain: #fffaf2;
  --shadow: rgba(70, 53, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  background: var(--paper);
}

body {
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(180, 134, 55, 0.22), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(111, 123, 5, 0.18), transparent 30%),
    linear-gradient(145deg, #fffdf8 0%, #f6ecdc 48%, #efe0ca 100%);
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(180, 134, 55, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(180, 134, 55, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent 72%);
}

.coming-soon {
  position: relative;
  display: grid;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  overflow: hidden;
  padding: clamp(16px, 4vh, 48px) 22px;
}

.intro {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  text-align: center;
}

.brand-mark {
  width: clamp(130px, min(23vw, 25vh), 248px);
  height: auto;
  margin-bottom: clamp(10px, 2.5vh, 26px);
  filter: drop-shadow(0 18px 30px var(--shadow));
}

.eyebrow {
  margin: 0 0 clamp(8px, 1.8vh, 18px);
  color: var(--olive);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 8.2vw, 5.9rem);
  font-weight: 500;
  line-height: 0.96;
}

.lead {
  max-width: 680px;
  margin: clamp(16px, 3.5vh, 34px) auto 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 3.2vw, 2.25rem);
  font-weight: 400;
  line-height: 1.24;
}

.promise {
  max-width: 540px;
  margin: clamp(10px, 2.2vh, 22px) auto 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 2.1vw, 1.08rem);
  font-weight: 300;
  line-height: 1.8;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: clamp(16px, 4.5vh, 44px);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

.location::before,
.location::after {
  width: 62px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.location span + span::before {
  margin-right: 16px;
  content: "";
}

.ambient {
  position: absolute;
  border: 1px solid rgba(180, 134, 55, 0.2);
  border-radius: 50%;
  opacity: 0.72;
}

.ambient-one {
  top: -180px;
  right: -130px;
  width: 430px;
  height: 430px;
}

.ambient-two {
  bottom: -220px;
  left: -150px;
  width: 520px;
  height: 520px;
}

@media (max-width: 640px) {
  .coming-soon {
    padding: clamp(12px, 3vh, 28px) 18px;
  }

  .brand-mark {
    width: clamp(100px, min(44vw, 20vh), 160px);
    margin-bottom: clamp(8px, 2vh, 18px);
  }

  h1 {
    font-size: clamp(2.75rem, 13.5vw, 4rem);
  }

  .lead {
    margin-top: clamp(12px, 2.5vh, 24px);
    font-size: clamp(1.12rem, min(5.5vw, 3vh), 1.45rem);
  }

  .promise {
    font-size: clamp(0.78rem, min(3.8vw, 2.1vh), 0.96rem);
    line-height: 1.55;
  }

  .location {
    display: grid;
    gap: clamp(3px, 0.8vh, 8px);
    margin-top: clamp(12px, 2.5vh, 28px);
  }

  .location::before,
  .location::after {
    width: 92px;
    margin: 0 auto;
  }
}

@media (max-height: 620px) {
  .eyebrow {
    font-size: 0.68rem;
  }

  h1 {
    font-size: clamp(2.25rem, 9vh, 3.6rem);
  }

  .lead {
    line-height: 1.15;
  }

  .promise {
    line-height: 1.4;
  }

  .location {
    font-size: 0.65rem;
  }
}