:root {
  --bg: #050507;
  --ink: #f6f3ec;
  --muted: #a9a6ad;
  --accent: #ff5a36;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px clamp(24px, 5vw, 72px);
  z-index: 10;
}
.lang-toggle {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  display: flex;
  gap: 8px;
}
.lang-toggle button {
  background: none;
  border: none;
  font: inherit;
  letter-spacing: inherit;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}
.lang-toggle button.active {
  color: var(--ink);
}
.lang-toggle button:hover {
  color: var(--ink);
}
.lang-toggle span {
  color: var(--muted);
}

.hero {
  position: relative;
  height: 78vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
}
.hero .logo {
  position: relative;
  z-index: 3;
  width: min(72vw, 480px);
  height: auto;
}

.section {
  margin: 0 auto;
  padding: 56px 24px;
  text-align: center;
}
.lead {
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.6;
  color: var(--ink);
  font-weight: 400;
}

.showcase {
  display: flex;
  justify-content: center;
  padding: 20px 24px 10px;
}
.showcase img {
  width: min(88vw, 560px);
  height: auto;
}

.footer {
  padding: 60px 24px 80px;
  text-align: center;
}
.footer .contact-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  font-size: 15px;
}
.footer .contact-line {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.9;
}
.footer .contact-line a {
  text-decoration: none;
  border-bottom: 1px solid rgba(246, 243, 236, 0.25);
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}
.footer .contact-line a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.upsection {
  margin-top: -30px;
  padding-top: 30px;
}

@media (max-width: 768px) {
  .section {
    padding: 20px 24px;
  }

  .upsection {
    margin-top: -30px;
    padding-top: 30px;
  }

  .hero {
    height: unset;
  }
}
