:root {
  --bg: #070707;
  --bg-soft: #0d0b0a;
  --card: rgba(255, 255, 255, 0.04);
  --card-border: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-soft: #f3d87c;
  --text: #f7f2ea;
  --muted: #d3c9ba;
  --line: rgba(255, 255, 255, 0.08);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.18);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.07), transparent 28%),
    radial-gradient(circle at bottom, rgba(212, 175, 55, 0.04), transparent 25%),
    linear-gradient(180deg, #050505 0%, #090807 40%, #050505 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  letter-spacing: 0.16em;
  color: #e4800e;
  text-transform: uppercase;
}

.top-nav {
  display: flex;
  gap: 26px;
}

.top-nav a {
  color: gold;
  font-size: 1.1rem;
  transition: 0.25s ease;
}

.top-nav a:hover {
  color: rgb(150, 160, 36);
}

.lang-switcher {
  display: flex;
  gap: 8px;
}

.lang-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(255,255,255,0.03);
  color: #f5e7ca;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
  background: radial-gradient(circle, #f3d87c 0%, #d4af37 65%, #a57d16 100%);
  color: #1e1400;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.35);
}

.section {
  position: relative;
  padding: 130px 0;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}

.hero-inner {
  text-align: center;
  max-width: 920px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255,255,255,0.03);
  color: #edd8a0;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 1.15;
  font-weight: 600;
  color: #fff6ea;
  text-shadow:
    0 0 14px rgba(255,255,255,0.08),
    0 0 28px rgba(212, 175, 55, 0.15);
  margin-bottom: 24px;
}

.tm {
  font-size: 0.22em;
  vertical-align: top;
  margin-left: 6px;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: #e2ae43;
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero-text {
  max-width: 760px;
  margin: 0 auto 34px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.center-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  color: #1d1402;
  background: linear-gradient(180deg, #f7e39d 0%, #d4af37 52%, #ae841c 100%);
  box-shadow:
    0 8px 30px rgba(212, 175, 55, 0.28),
    inset 0 1px 1px rgba(255,255,255,0.35);
}

.btn-outline {
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #f1dfbf;
  background: rgba(255,255,255,0.025);
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.08);
}

.large {
  padding: 18px 34px;
  font-size: 1rem;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.section-label {
  color: #a57b11;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.82rem;
  margin-bottom: 18px;
}

.section-label.center,
.section-title.center,
.final-text {
  text-align: center;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 22px;
  color: #fff4e0;
}

.section-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.06rem;
  margin-bottom: 16px;
}

.feature-card,
.info-card,
.final-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  border: 1px solid var(--card-border);
  border-radius: 28px;
  box-shadow: var(--shadow-gold);
}

.feature-card {
  padding: 34px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 18px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: #f2e9dc;
  line-height: 1.65;
}

.feature-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.info-card {
  padding: 28px;
  min-height: 180px;
}

.info-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.final-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 54px 34px;
}

.final-text {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.06rem;
  max-width: 760px;
  margin: 0 auto 14px;
}

.footer {
  padding: 70px 0 40px;
  background: #050505;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  border-top: 1px solid rgba(212,175,55,0.12);
  padding-top: 38px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #ab6515;
  margin-bottom: 14px;
}

.footer-note {
  color: #bfb4a6;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-title {
  color: #c8991a;
  font-size: 2.0rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: #d8cec0;
  line-height: 1.7;
}

.contact-list a {
  color: #f5dfaa;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

.bg-glow-1 {
  width: 280px;
  height: 280px;
  background: rgba(212, 175, 55, 0.22);
  top: 10%;
  left: -60px;
}

.bg-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(255, 195, 70, 0.12);
  right: -80px;
  top: 30%;
}

.bg-glow-3 {
  width: 260px;
  height: 260px;
  background: rgba(212, 175, 55, 0.13);
  bottom: 8%;
  left: 30%;
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .two-col,
  .footer-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(3.5rem, 14vw, 5.4rem);
  }

  .section {
    padding: 100px 0;
  }

  .header {
    padding: 18px 16px;
  }

  .logo {
    font-size: 1.35rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-text,
  .section-text,
  .info-card p,
  .final-text,
  .footer-note,
  .contact-list {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-card,
  .info-card,
  .final-box {
    border-radius: 22px;
  }
}