:root {
  --ink: #1f2a3e;
  --ink-soft: #566173;
  --gold: #b58b4e;
  --gold-strong: #a97933;
  --gold-soft: #d1b47f;
  --paper: #f4ebdd;
  --card: #fffdf9;
  --shadow: 0 22px 70px rgba(41, 34, 25, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at 12% 8%, rgba(211, 184, 136, 0.28), transparent 30%),
    radial-gradient(circle at 88% 87%, rgba(39, 48, 66, 0.08), transparent 28%),
    linear-gradient(160deg, #f6efe4 0%, #ecdfcb 100%);
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-layer-1 {
  background: linear-gradient(90deg, rgba(181, 139, 78, 0.08) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.22;
}

.bg-layer-2 {
  background: radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.85), transparent 56%);
}

.coming-soon-shell {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(0.9rem, 2.2vw, 1.8rem);
}

.brand-card {
  position: relative;
  width: min(1140px, 100%);
  border-radius: 38px;
  border: 1px solid rgba(181, 139, 78, 0.5);
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.98), transparent 34%),
    radial-gradient(circle at 78% 84%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(180deg, #fffefb 0%, #fff8eb 100%);
  box-shadow: var(--shadow);
  text-align: center;
  padding: clamp(1.3rem, 3vw, 2.8rem) clamp(1rem, 3.8vw, 3rem) clamp(1.6rem, 3vw, 2.35rem);
  overflow: hidden;
  isolation: isolate;
  backdrop-filter: blur(1.5px);
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 30px;
  border: 1px solid rgba(181, 139, 78, 0.2);
  pointer-events: none;
}

.side-art {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.side-art-left {
  left: 0;
  bottom: 0;
  width: min(250px, 26vw);
  height: 88%;
  border-right: 1px solid rgba(181, 139, 78, 0.2);
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.45)),
    repeating-linear-gradient(
      90deg,
      rgba(181, 139, 78, 0.08) 0,
      rgba(181, 139, 78, 0.08) 2px,
      transparent 2px,
      transparent 26px
    );
  opacity: 0.55;
}

.side-art-right {
  right: -10px;
  bottom: -12px;
  width: min(220px, 24vw);
  height: min(280px, 35vw);
  background:
    radial-gradient(ellipse at 30% 80%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 72%),
    radial-gradient(ellipse at 70% 15%, rgba(120, 145, 99, 0.52) 0%, rgba(120, 145, 99, 0) 64%);
  opacity: 0.9;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0.46rem 1.35rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(160deg, #bb8f4f 0%, #a8772f 100%);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 700;
}

.eyebrow {
  margin: 0.82rem 0 0;
  color: #243049;
  font-weight: 600;
  font-size: clamp(0.84rem, 1.2vw, 1.02rem);
  letter-spacing: 0.41em;
  text-transform: uppercase;
}

.ornament {
  width: 194px;
  height: 16px;
  margin: 0.5rem auto 0;
  position: relative;
  background: radial-gradient(circle at center, rgba(181, 139, 78, 0.9) 0 2px, transparent 2.3px);
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 41%;
  border-top: 1px solid rgba(181, 139, 78, 0.45);
  transform: translateY(-50%);
}

.ornament::before {
  left: 0;
}

.ornament::after {
  right: 0;
}

.ornament::selection {
  background: transparent;
}

.ornament-top {
  margin-bottom: 0.36rem;
}

.ornament-mid {
  margin-top: 0.3rem;
  margin-bottom: 0.62rem;
}

.brand-logo {
  width: clamp(230px, 60vw, 620px);
  max-width: 96%;
  margin: 0.4rem auto 0;
  display: block;
}

.content-frame {
  width: min(860px, 100%);
  margin: 0 auto;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.92;
}

.opening-date-row {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 650;
  color: #1f2b3f;
}

.icon-wrap,
.mail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg,
.mail-icon svg,
.instagram-btn svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lead-copy {
  margin: 0.72rem auto 1.2rem;
  color: var(--ink-soft);
  line-height: 1.48;
  font-size: clamp(1.05rem, 1.8vw, 1.14rem);
}

.newsletter {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.26rem 0.28rem 0.26rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(181, 139, 78, 0.52);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(181, 139, 78, 0.22);
}

.mail-icon svg {
  width: 1.22rem;
  height: 1.22rem;
}

.newsletter input {
  border: 0;
  background: transparent;
  outline: none;
  font: inherit;
  min-width: 0;
  color: #1e2b40;
  min-height: 56px;
  font-size: 1.04rem;
}

.newsletter input::placeholder {
  color: rgba(46, 58, 78, 0.6);
}

.newsletter button {
  border: 0;
  min-height: 58px;
  border-radius: 999px;
  padding: 0.8rem 1.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #1d2940 0%, #111d31 100%);
  color: var(--gold-soft);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(28, 39, 59, 0.25);
}

.newsletter button .arrow {
  font-size: 1.2em;
  line-height: 1;
}

.newsletter button:hover,
.newsletter button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(28, 39, 59, 0.34);
}

.newsletter input:focus-visible,
.newsletter button:focus-visible,
.instagram-btn:focus-visible {
  outline: 2px solid rgba(181, 139, 78, 0.65);
  outline-offset: 2px;
}

.newsletter-note {
  margin: 0.92rem auto 1.28rem;
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  color: rgba(46, 58, 78, 0.7);
  font-size: 1rem;
}

.newsletter-note .icon-wrap svg {
  width: 1.14rem;
  height: 1.14rem;
}

.action-row {
  width: min(380px, 100%);
  margin: 0 auto;
}

.insta-label {
  margin: 0;
  color: #1f2b3f;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
}

.insta-label::before,
.insta-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 55px;
  height: 1px;
  background: rgba(181, 139, 78, 0.52);
}

.insta-label::before {
  right: calc(100% + 14px);
}

.insta-label::after {
  left: calc(100% + 14px);
}

.instagram-btn {
  margin: 0.72rem auto 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #1b2940;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  text-decoration: none;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.instagram-btn svg {
  width: 20px;
  height: 20px;
  stroke: #1b2940;
}

.instagram-btn:hover,
.instagram-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(27, 41, 64, 0.18);
}

.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) {
  .side-art-left,
  .side-art-right {
    opacity: 0.45;
  }

  .insta-label::before,
  .insta-label::after {
    width: 42px;
  }
}

@media (max-width: 720px) {
  .coming-soon-shell {
    min-height: 100dvh;
    place-items: start center;
    padding:
      max(0.85rem, env(safe-area-inset-top))
      0.6rem
      max(0.95rem, env(safe-area-inset-bottom));
  }

  .brand-card {
    width: 100%;
    border-radius: 24px;
    padding: 0.92rem 0.68rem 1.15rem;
  }

  .brand-card::before {
    inset: 8px;
    border-radius: 18px;
  }

  .status-pill {
    min-height: 34px;
    font-size: 0.64rem;
    letter-spacing: 0.28em;
    padding: 0.44rem 0.95rem;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.27em;
  }

  .ornament {
    width: 150px;
  }

  .brand-logo {
    width: clamp(188px, 80vw, 420px);
    margin-top: 0.36rem;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .opening-date-row {
    font-size: 1.26rem;
  }

  .lead-copy {
    font-size: 0.98rem;
    margin-bottom: 0.88rem;
  }

  .newsletter {
    grid-template-columns: 1fr;
    gap: 0.38rem;
    border-radius: 24px;
    padding: 0.44rem;
  }

  .mail-icon {
    display: none;
  }

  .newsletter input {
    min-height: 46px;
    padding: 0 0.82rem;
    font-size: 0.95rem;
  }

  .newsletter button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    padding: 0.72rem 1rem;
    font-size: 0.95rem;
  }

  .newsletter-note {
    font-size: 0.89rem;
    margin-bottom: 0.86rem;
  }

  .insta-label {
    font-size: 0.74rem;
    letter-spacing: 0.23em;
  }

  .insta-label::before,
  .insta-label::after {
    width: 28px;
  }

  .instagram-btn {
    margin-top: 0.6rem;
    width: 38px;
    height: 38px;
  }

  .side-art-right {
    width: 150px;
    height: 180px;
    opacity: 0.78;
  }

  .side-art-left {
    width: 110px;
    opacity: 0.35;
  }
}

@media (max-width: 560px) {
  .side-art-left,
  .side-art-right {
    display: none;
  }

  .insta-label::before,
  .insta-label::after {
    width: 18px;
  }

  .newsletter-note {
    text-align: center;
    justify-content: center;
  }
}
