:root {
  --bg-start: #fff7ea;
  --bg-mid: #f3ebde;
  --bg-end: #e7ddcf;
  --surface: rgba(255, 255, 255, 0.8);
  --surface-strong: #fffdf9;
  --text: #211c18;
  --muted: #6c625a;
  --border: rgba(33, 28, 24, 0.12);
  --accent: #b5673e;
  --accent-dark: #8d4927;
  --shadow: 0 20px 44px rgba(30, 23, 18, 0.13);
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 14% 10%, var(--bg-start) 0%, var(--bg-mid) 42%, var(--bg-end) 100%);
}

.glow {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(46px);
}

.glow-left {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -140px;
  background: rgba(181, 103, 62, 0.18);
}

.glow-right {
  width: 440px;
  height: 440px;
  bottom: -170px;
  right: -150px;
  background: rgba(121, 163, 138, 0.15);
}

.coming-main {
  min-height: 100vh;
  width: min(1100px, calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  padding: clamp(20px, 4vw, 42px) 0;
}

.coming-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(16px, 2.2vw, 24px);
  padding: clamp(18px, 2.8vw, 34px);
}

.coming-copy {
  display: grid;
  align-content: center;
}

.logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.eyebrow {
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--muted);
  font-size: 0.84rem;
}

h1 {
  margin: 10px 0 0;
  font-family: "Sora", "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
}

.description {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
  max-width: 58ch;
  font-size: 1.03rem;
}

.chip-row {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface-strong);
  font-size: 0.86rem;
  color: #4f453f;
}

.btn {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 600;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 24px rgba(141, 73, 39, 0.28);
}

.coming-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  min-height: 360px;
}

.coming-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 920px) {
  .coming-card {
    grid-template-columns: 1fr;
  }

  .coming-media {
    min-height: 290px;
  }
}

@media (max-width: 680px) {
  .logo {
    height: 46px;
  }

  .description {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .coming-media {
    min-height: 250px;
  }
}
