:root {
  --gold: #d4af37;
  --gold-light: #f2d675;
  --bg: #0a0a0a;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
  font-family: 'Georgia', 'Times New Roman', serif;
  color: #f2ede3;
  display: flex;
  flex-direction: column;
}

/* language switcher */
.lang-nav {
  flex: 0 0 auto;
  display: flex;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.9rem 1.75rem;
  overflow-x: auto;
  white-space: nowrap;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  background: var(--bg);
  font-family: 'Noto Sans', 'Noto Sans Devanagari', 'Noto Sans Tamil', 'Noto Sans Telugu', 'Noto Sans Malayalam', 'Noto Sans Kannada', 'Noto Sans Gujarati', system-ui, sans-serif;
}
.lang-nav a {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: rgba(242, 237, 227, 0.5);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.lang-nav a:hover { color: #f2ede3; }
.lang-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.layout {
  flex: 1 1 auto;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
}
.panel-text {
  flex: 1 1 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 5.5rem 3.5rem 3rem;
}
.content { width: 100%; max-width: 480px; }
.brand { margin-bottom: 2.75rem; }
.brand img { height: 116px; width: auto; }

h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  letter-spacing: 0.01em;
}
h1 .accent { color: var(--gold); }
body.lang-en h1 .accent { font-style: italic; }

.subtitle {
  margin-top: 0.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cfc7b8;
}

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 2.25rem 0;
  opacity: 0.7;
}

.coming-soon {
  font-size: 0.85rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
body:not(.lang-en) .coming-soon {
  letter-spacing: 0.05em;
  text-transform: none;
  font-size: 0.95rem;
}

.thanks {
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: #cfc7b8;
}
body.lang-en .thanks { font-style: italic; }

footer {
  margin-top: 3.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242, 237, 227, 0.4);
}

.panel-image { flex: 1 1 50%; position: relative; overflow: hidden; }
.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.panel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0) 25%);
}

/* per-language body fonts for correct script rendering */
body.lang-hi, body.lang-ne { font-family: 'Noto Sans Devanagari', sans-serif; }
body.lang-ta { font-family: 'Noto Sans Tamil', sans-serif; }
body.lang-te { font-family: 'Noto Sans Telugu', sans-serif; }
body.lang-ml { font-family: 'Noto Sans Malayalam', sans-serif; }
body.lang-kn { font-family: 'Noto Sans Kannada', sans-serif; }
body.lang-gu { font-family: 'Noto Sans Gujarati', sans-serif; }

@media (max-width: 860px) {
  .layout { flex-direction: column; }
  .panel-image { flex: 0 0 42vh; }
  .panel-text { flex: 1 1 auto; padding: 3rem 1.75rem; text-align: center; }
  .content { max-width: 100%; }
  .rule { margin: 2rem auto; }
  footer { margin-top: 2.5rem; }
  .lang-nav { padding: 0.8rem 1.25rem; gap: 1.1rem; }
}
