/* Big dramatic arrows nearly hitting the box */
.corner-arrow {
  position: fixed;
  top: 0;
  z-index: 10;
  pointer-events: none;
  opacity: 0.92;
  width: 420px;
  height: 420px;
  max-width: 50vw;
  max-height: 60vh;
}
.left-arrow {
  left: 0;
  transform: translate(-40px, 0) rotate(-2deg);
}
.right-arrow {
  right: 0;
  transform: translate(40px, 0) scaleX(-1) rotate(-2deg);
}
@media (max-width: 900px) {
  .corner-arrow {
    width: 120px !important;
    height: 120px !important;
    max-width: 40vw;
    max-height: 20vh;
  }
}
@media (max-width: 600px) {
  .corner-arrow {
    display: none;
  }
}
.btn.facebook,
.btn.instagram,
.btn.tiktok {
  background: linear-gradient(90deg, #bfa14a 0%, #e6c76e 40%, #c9a441 70%, #b38628 100%);
  color: #222;
  border: none;
  box-shadow: 0 0 16px 4px rgba(191, 161, 74, 0.32), 0 2px 8px rgba(179, 134, 40, 0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}
.btn.facebook:hover,
.btn.instagram:hover,
.btn.tiktok:hover {
  background: linear-gradient(90deg, #e6c76e 0%, #bfa14a 40%, #c9a441 70%, #b38628 100%);
  color: #111;
  box-shadow: 0 0 36px 10px rgba(191, 161, 74, 0.45), 0 2px 16px rgba(179, 134, 40, 0.22);
  filter: brightness(1.08) drop-shadow(0 0 12px #bfa14a);
}
/* Curated by Noar Coming Soon Styles */
:root{
  --bg: #fff;
  --accent: #222;
  --muted: #7b766f;
  --accent-soft: #e6dfd6;
  --box-bg: #f7f5f2;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--accent);
  font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow-x: hidden;
}
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 56px;
  margin-bottom: 32px;
}
.logo-img {
  width: 140px;
  max-width: 80vw;
  height: auto;
  display: block;
  margin-bottom: 10px;
}
.noar-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
}
.curated-by {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-top: 2px;
  margin-bottom: 0;
  font-weight: 400;
}
.content-block {
  width: 100%;
  max-width: 600px;
  background: var(--box-bg);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(34,34,34,0.06);
  padding: 40px 36px 32px 36px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 1;
}
.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 22px;
  margin-top: 0;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.06);
  background: transparent;
  color: var(--accent);
  transition: background 0.2s;
}
.btn.primary {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  box-shadow: 0 6px 18px rgba(34,34,34,0.08);
}
.social {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.social a {
  color: var(--accent);
  transition: opacity 0.2s ease;
}
.social a:hover {
  opacity: 0.7;
}
.social svg {
  width: 28px;
  height: 28px;
}
form.email-form {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}
input[type=email] {
  flex: 1;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  min-width: 0;
}
input[type=submit] {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
small {
  display: block;
  color: var(--muted);
  margin-top: 8px;
  font-size: 13px;
}
.side-logo {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  max-width: 95vw;
  height: auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.2s;
}
.side-logo.left {
  left: 24px;
}
.side-logo.right {
  right: 24px;
}
@media (max-width: 900px) {
  .side-logo {
    display: none;
  }
  .mobile-noar-logo {
    display: block;
    margin: 18px auto 12px auto;
    max-width: 180px;
    width: 40vw;
    height: auto;
  }
}
@media (max-width: 600px) {
  .side-logo {
    display: none;
  }
}
@media (max-width: 600px) {
  .logo-block {
    margin-top: 32px;
    margin-bottom: 18px;
  }
  .content-block {
    padding: 18px 4vw 12px 4vw;
  }
  .tagline {
    font-size: 1rem;
  }
  .social svg {
    width: 22px;
    height: 22px;
  }
}
.coming-soon {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 0 36px 0;
  text-align: center;
  color: var(--accent);
  font-style: italic;
}

/* Decorative artwork row at very bottom, outside the box */
.artwork-row {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 56px;
  margin: 0 0 28px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 0;
}
.artwork-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: inline-block;
  opacity: 0.97;
  transition: transform 0.18s, opacity 0.18s;
  filter: drop-shadow(0 4px 16px rgba(34,34,34,0.10));
}
.artwork-icon:hover {
  transform: scale(1.13) rotate(-2deg);
  opacity: 1;
}
@media (max-width: 600px) {
  .artwork-row {
    gap: 16px;
    margin: 0 0 8px 0;
  }
  .artwork-icon {
    width: 38px;
    height: 38px;
  }
}
.mobile-noar-logo {
  display: none;
  margin: 18px auto 12px auto;
  max-width: 160px;
  width: 60vw;
  height: auto;
}
@media (max-width: 1200px) {
  .mobile-noar-logo {
    display: block;
    margin: 18px auto 12px auto;
    max-width: 180px;
    width: 40vw;
    height: auto;
  }
}
