:root {
  --bg: #08111f;
  --bg-soft: #0d1b2a;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f6f7fb;
  --muted: #aab4c6;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #d6aa5b;
  --accent-2: #f2d18b;
  --dark: #050a13;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 170, 91, 0.16), transparent 30rem),
    radial-gradient(circle at 80% 20%, rgba(74, 109, 167, 0.26), transparent 32rem),
    linear-gradient(180deg, var(--bg), #050914 70%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(8, 17, 31, 0.78);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.brand-logo-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255,255,255,0.25);
}

.brand-logo {
  width: 220px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}
.brand-text { font-size: 14px; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.nav a { transition: color 0.2s ease; }
.nav a:hover { color: var(--text); }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
}

.language-switch {
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 700;
  min-width: 48px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-switch:hover { transform: translateY(-1px); }
.language-switch.is-active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171003;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.section { padding: 96px 0; }
.hero { min-height: calc(100vh - 88px); display: flex; align-items: center; }
.hero-grid,
.split-grid,
.owner-grid,
.documents-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-text,
.section-content p,
.owner-copy p,
.documents p,
.info-card p,
.contact-subtitle {
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171003;
}
.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
}

.hero-card,
.contact-card,
.info-card,
.download-list,
.owner-photo-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--card-strong), rgba(255,255,255,0.045));
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.card-glow {
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 170, 91, 0.32), transparent 70%);
}
.company-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 148px;
  height: 148px;
  margin-bottom: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(214, 170, 91, 0.36);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  padding: 14px;
}
.company-mark-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 12px 14px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.company-mark-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.summary-row {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.summary-row span { color: var(--muted); }
.summary-row strong { text-align: right; }

.about { background: rgba(255,255,255,0.025); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.split-grid { grid-template-columns: 0.35fr 1fr; align-items: start; }
.section-content { max-width: 790px; }

.owner-grid { grid-template-columns: 0.8fr 1.2fr; }
.owner-photo-wrap { padding: 18px; }
.owner-photo { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top; border-radius: 22px; border: 1px solid var(--line); background: rgba(0,0,0,0.15); box-shadow: 0 22px 60px rgba(0,0,0,0.28); }
.photo-note { margin: 14px 0 0; color: var(--muted); font-size: 14px; text-align: center; }

.section-heading { max-width: 720px; margin-bottom: 34px; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info-card { padding: 28px; }
.icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  border-radius: 16px;
  background: rgba(214, 170, 91, 0.13);
  color: var(--accent-2);
  font-weight: 900;
}

.documents {
  background: linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.download-list {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.download-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}
.download-item:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 170, 91, 0.55);
  background: rgba(255,255,255,0.08);
}
.download-icon {
  display: grid;
  place-items: center;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #171003;
  font-weight: 900;
  font-size: 12px;
}
.download-item small { display: block; color: var(--muted); margin-top: 2px; font-size: 12px; word-break: break-word; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 36px;
  padding: 42px;
  align-items: center;
}
.contact-details {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}
.contact-link {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-2);
  font-size: 28px;
  font-weight: 900;
}
.contact-email {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  word-break: break-word;
}
.contact-email:hover {
  color: var(--accent-2);
}
address { color: var(--muted); font-style: normal; }
.company-id { margin: 18px 0 0; color: var(--muted); }

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-inner p { margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .nav { gap: 16px; }
  .brand-logo { width: 200px; }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-toggle { display: inline-block; }
  .nav {
    position: absolute;
    inset: 88px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 17, 31, 0.98);
  }
  .nav.is-open { display: flex; }
  .language-switcher { align-self: flex-start; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-grid,
  .split-grid,
  .owner-grid,
  .documents-grid,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cards-grid { grid-template-columns: 1fr; }
  .owner-photo-wrap { max-width: 420px; margin: 0 auto; }
  .contact-details { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
  .footer-inner { flex-direction: column; }
}

@media (max-width: 520px) {
  h1 { font-size: 42px; }
  .hero-card, .contact-card { padding: 24px; }
  .summary-row { flex-direction: column; gap: 2px; }
  .summary-row strong { text-align: left; }
  .brand-logo-shell { padding: 8px 12px; border-radius: 14px; }
  .brand-logo { width: 156px; max-height: 40px; }
  .contact-link { font-size: 23px; }
  .owner-photo-wrap {
    max-width: 340px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 24px;
  }
  .owner-photo {
    aspect-ratio: 4 / 5;
    max-height: 420px;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
  }
  .photo-note {
    font-size: 13px;
    margin-top: 10px;
  }
  .company-mark {
    width: 132px;
    height: 132px;
    margin-bottom: 22px;
  }
}
