:root {
  --bg: #000000;
  --panel: rgba(255, 248, 240, 0.055);
  --panel-border: rgba(255, 255, 255, 0.12);
  --text: #f7f2ea;
  --muted: rgba(247, 242, 234, 0.72);
  --accent: #de6b2d;
  --accent-soft: #f5a239;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  background:
    linear-gradient(rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.72)),
    url("./assets/wallpaper.png") center center / cover no-repeat,
    radial-gradient(circle at top left, rgba(245, 162, 57, 0.16), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(255, 205, 137, 0.1), transparent 18%),
    radial-gradient(circle at bottom right, rgba(222, 107, 45, 0.15), transparent 30%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 42px) 10px;
}

.social-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  backdrop-filter: blur(10px);
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(222, 107, 45, 0.12);
  border-color: rgba(245, 162, 57, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 162, 57, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.language-switcher {
  position: relative;
}

.language-button,
.language-option {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 10px;
  justify-content: center;
}

.language-button {
  min-width: 138px;
  padding: 12px 18px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-option:hover,
.language-option:focus-visible {
  background: rgba(222, 107, 45, 0.12);
  border-color: rgba(245, 162, 57, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 162, 57, 0.08);
  outline: none;
}

.language-button:hover,
.language-button:focus-visible {
  transform: translateY(-2px);
}

.language-caret {
  font-size: 0.84rem;
  opacity: 0.85;
}

.flag {
  font-size: 1rem;
  line-height: 1;
}

.language-menu {
  background: rgba(8, 8, 8, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: none;
  min-width: 168px;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 20;
}

.language-switcher.is-open .language-menu {
  display: grid;
  gap: 8px;
}

.language-option {
  justify-content: flex-start;
  padding: 12px 14px;
  width: 100%;
}

.language-option.is-active {
  background: rgba(245, 162, 57, 0.16);
  border-color: rgba(245, 162, 57, 0.38);
}

.hero {
  align-items: center;
  display: grid;
  min-height: calc(100vh - 72px);
  padding: 8px 24px 20px;
  position: relative;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.9;
  position: absolute;
}

.hero-glow-left {
  background: rgba(245, 162, 57, 0.2);
  height: 220px;
  left: -40px;
  top: 12%;
  width: 220px;
}

.hero-glow-right {
  background: rgba(222, 107, 45, 0.2);
  bottom: 10%;
  height: 240px;
  right: -60px;
  width: 240px;
}

.brand-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin: 0 auto;
  max-width: 700px;
  padding: clamp(20px, 3.2vw, 36px);
  position: relative;
  text-align: center;
  width: min(100%, 700px);
}

.brand-card::before {
  content: none;
}

.brand-logo {
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 18px 44px rgba(0, 0, 0, 0.34);
  display: block;
  margin: 0 auto 18px;
  max-width: min(250px, 48vw);
  width: 100%;
}

.eyebrow {
  color: var(--accent-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  line-height: 0.92;
  margin: 0;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.14rem);
  line-height: 1.6;
  margin: 14px auto 0;
  max-width: 500px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 680px) {
  body {
    background-attachment: scroll;
    overflow-y: auto;
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
    padding-bottom: 8px;
  }

  .social-nav {
    justify-content: center;
  }

  .language-switcher {
    align-self: center;
  }

  .social-link {
    padding: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 8px;
    padding-bottom: 28px;
  }

  .brand-card {
    border-radius: 28px;
    padding: 24px 18px 28px;
  }

  .brand-logo {
    max-width: min(220px, 58vw);
  }

  h1 {
    line-height: 1;
  }
}
