:root {
  color-scheme: dark;
  font-family: "Hind Siliguri", "Noto Sans Bengali", system-ui, sans-serif;
  --paper: #f5e7d2;
  --ink: #211b18;
  --red: #6f1f25;
  --gold: #d49b3a;
}

* {
  box-sizing: border-box;
}

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

body {
  overflow: hidden;
  background: #1c1715;
}

.language-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  padding: 18px clamp(18px, 4vw, 52px);
  background: linear-gradient(to bottom, rgba(20, 15, 12, 0.62), transparent);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff8eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.toggle {
  width: 52px;
  height: 28px;
  padding: 3px;
  border: 1px solid rgba(255, 244, 224, 0.72);
  border-radius: 999px;
  background: rgba(111, 31, 37, 0.9);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.toggle span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease;
}

.toggle[aria-checked="true"] span {
  transform: translateX(24px);
}

.toggle:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.holding-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.contai-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.holding-page::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to bottom, rgba(17, 11, 8, 0.08) 35%, rgba(24, 12, 11, 0.78) 100%),
    linear-gradient(to right, rgba(38, 17, 16, 0.18), transparent 56%);
  pointer-events: none;
}

.holding-message {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: clamp(32px, 8vh, 92px);
  left: clamp(22px, 6vw, 92px);
  z-index: 1;
  max-width: 780px;
  color: #fff9ef;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.72);
}

.status {
  margin: 0 0 10px;
  color: #ffe1a3;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.holding-message > p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

html[lang="en"] h1 {
  letter-spacing: -0.055em;
}

@media (max-width: 620px) {
  .language-bar {
    padding-top: 14px;
  }

  .contai-photo {
    object-position: 58% center;
  }

  .holding-message {
    bottom: 38px;
  }
}
