*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  --orange:      #E8621A;
  --orange-deep: #F57C10;
  --orange-soft: #F4874B;
  --orange-pale: #FDE8D8;
  --white:       #FFFFFF;
  --off-white:   #FFF8F4;
  --text-dark:   #2A1A0E;
  --text-mid:    #434343;
}

html, body {
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── Background decorative circles ── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}
body::before {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -180px; right: -180px;
}
body::after {
  width: 400px; height: 400px;
  background: var(--orange-soft);
  bottom: -120px; left: -120px;
}

/* ── Top accent bar ── */
.accent-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange-soft), var(--orange-deep));
  z-index: 10;
}

/* ── Page wrapper ── */
.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

/* ── Two-column card ── */
.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 960px;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(232, 98, 26, 0.14), 0 2px 12px rgba(0,0,0,0.07);
}

/* ── LEFT COLUMN ── */
.col-left {
  background: var(--white);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* decorative circle inside left col */
.col-left::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(232, 98, 26, 0.08);
  top: -50px; right: -100px;
  pointer-events: none;
}
.col-left::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(232, 98, 26, 0.06);
  bottom: -60px; left: -60px;
  pointer-events: none;
}

.logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  padding: 5px;
  margin: 0 auto 10px;
  display: block;
}

.brand {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--orange-deep);
  line-height: 1.1;
  margin-bottom: 12px;
}

.tagline {
  font-size: 21px;
  font-weight: 500;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  line-height: 1.8;
  margin-bottom: 28px;
}

.divider-left {
  width: 48px;
  height: 2px;
  background: var(--orange-pale);
  border-radius: 2px;
  margin-bottom: 24px;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.product-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.product-list li svg {
  flex-shrink: 0;
  color: var(--orange);
  opacity: 0.85;
}

.website-tag {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-soft);
}

/* ── RIGHT COLUMN ── */
.col-right {
  background: linear-gradient(160deg, #7A2800 0%, #B84010 45%, #C44D10 100%);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.col-right::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  top: -80px; right: -80px;
  pointer-events: none;
}
.col-right::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  bottom: -50px; left: -50px;
  pointer-events: none;
}

.coming-soon {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.coming-soon span {
  color: #FFD4A8;
  font-weight: 600;
  display: block;
}

.description {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.9;
  margin-bottom: 36px;
  max-width: 360px;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.count-box {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 66px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.count-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: block;
}

.count-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  display: block;
  margin-top: 4px;
}

/* ── Email form ── */
.notify-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  margin-bottom: 12px;
  display: block;
}

.email-form {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  max-width: 360px;
}

.email-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  color: var(--text-dark);
  background: rgba(255,255,255,0.92);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.email-form input::placeholder { color: #C4A090; }
.email-form input:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.25);
}

.email-form button {
  padding: 12px 20px;
  background: var(--white);
  color: var(--orange-deep);
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.email-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  background: var(--off-white);
}
.email-form button:active { transform: translateY(0); }

.success-msg {
  display: none;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 32px;
  padding: 12px 0;
}

/* ── Social icons ── */
.socials {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
  color: var(--white);
}

/* ── Footer ── */
.footer {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.footer a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
}
.footer a:hover { text-decoration: underline; }

/* ── Responsive: stack on mobile ── */
@media (max-width: 720px) {
  .card {
    grid-template-columns: 1fr;
  }

  .col-left {
    align-items: center;
    text-align: center;
    padding: 48px 32px 40px;
  }

  .col-left::before { top: -60px; right: -80px; }

  .product-list li { justify-content: center; }

  .col-right {
    padding: 40px 32px 48px;
    align-items: center;
    text-align: center;
  }

  .coming-soon span { display: inline; }
  .description { max-width: 100%; }
  .email-form { flex-direction: column; max-width: 100%; }
  .email-form button { width: 100%; }
  .countdown { justify-content: center; }
}

@media (max-width: 400px) {
  .col-left, .col-right { padding: 36px 24px; }
  .count-box { min-width: 58px; padding: 12px 10px; }
}
