* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

.page {
  width: 100%;
  min-height: 100vh;
}

.coming-soon-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 0;
  background: #111;
  box-shadow: none;
}

/* Top Bar */

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;

  /* Desktop: top bar only inside the left section */
  width: 50%;
  min-height: 68px;

  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;

  padding: 0 28px;

  /* White line only on the left section */
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);

  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.12);
}

.top-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
}

.top-item span {
  overflow: hidden;
  text-overflow: ellipsis;
}

a.top-item:hover {
  color: #d88b45;
}

.top-item i {
  font-size: 12px;
  flex-shrink: 0;
}

/* Left Side */

.left-panel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 60px 70px;
  overflow: hidden;
}

.left-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.6)),
    url("https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  transform: scale(1.08);
}

.left-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(115, 65, 26, 0.2), rgba(0, 0, 0, 0.7));
}

.brand-content {
  position: relative;
  z-index: 3;
  max-width: 480px;
  width: 100%;
  text-align: center;
}

.logo-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: "Cinzel", serif;
  font-size: 19px;
  letter-spacing: 8px;
  color: #fff;
}

.logo-mark i {
  color: #d88b45;
  font-size: 32px;
  filter: drop-shadow(0 0 16px rgba(216, 139, 69, 0.75));
}

h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(46px, 5.5vw, 82px);
  font-weight: 500;
  letter-spacing: 13px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.tagline {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
}

.call-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
  padding: 14px 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(216, 139, 69, 0.18);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

.call-cta:hover {
  background: #d88b45;
  border-color: #d88b45;
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(216, 139, 69, 0.32);
}

.call-cta i {
  font-size: 13px;
}

/* Right Side */

.right-panel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
}

.slider {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.right-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent 35%, rgba(0, 0, 0, 0.45)),
    linear-gradient(to right, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
}

/* Slider Navigation */

.nav {
  position: absolute;
  z-index: 10;
  top: 52%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
  transition: 0.25s ease;
}

.nav:hover {
  color: #d88b45;
  transform: translateY(-50%) scale(1.08);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Thumbnails */

.thumbnails {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  gap: 38px;
  width: 82%;
  justify-content: center;
}

.thumb {
  width: 140px;
  height: 78px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  cursor: pointer;
  opacity: 0.82;
  transition: 0.3s ease;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: #d88b45;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* Tablet */

@media (max-width: 980px) {
  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .top-bar {
    width: 100%;
    gap: 24px;
    font-size: 12px;
    flex-wrap: wrap;
    padding: 16px 24px;
  }

  .left-panel {
    min-height: 100vh;
    padding: 130px 36px 70px;
  }

  .right-panel {
    min-height: 70vh;
  }

  .thumbnails {
    gap: 18px;
  }

  .thumb {
    width: 120px;
    height: 70px;
  }
}

/* Mobile */

@media (max-width: 620px) {
  .coming-soon-card {
    display: flex;
    flex-direction: column;
  }

  .top-bar {
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 16px 18px;
    flex-direction: column;
    gap: 8px;
    background: rgba(0, 0, 0, 0.92);
  }

  .top-item {
    font-size: 12px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }

  .left-panel {
    min-height: calc(100vh - 120px);
    padding: 60px 24px 56px;
  }

  .logo-mark {
    font-size: 13px;
    letter-spacing: 5px;
    gap: 10px;
  }

  .logo-mark i {
    font-size: 25px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: 7px;
  }

  .tagline {
    font-size: 14px;
  }

  .right-panel {
    min-height: 430px;
  }

  .nav {
    font-size: 34px;
  }

  .prev {
    left: 16px;
  }

  .next {
    right: 16px;
  }

  .thumbnails {
    width: 92%;
    gap: 12px;
    bottom: 24px;
  }

  .thumb {
    width: 88px;
    height: 58px;
    border-radius: 8px;
  }
}

/* Small Mobile */

@media (max-width: 420px) {
  h1 {
    font-size: 34px;
    letter-spacing: 5px;
  }

  .logo-mark {
    font-size: 12px;
    letter-spacing: 4px;
  }

  .thumb {
    width: 74px;
    height: 52px;
  }
}