/* ZEUS MEDIA — shared styles */
:root {
  --bg: #070707;
  --bg-elev: #101010;
  --bg-card: #0d0d0d;
  --bg-soft: #141210;
  --ink: #f4efe4;
  --muted: #9b9486;
  --muted-2: #6f695e;
  --gold: #c9a04a;
  --gold-soft: #e4c97a;
  --gold-deep: #8a6d2e;
  --bronze: #a67c42;
  --line: rgba(201, 160, 74, 0.18);
  --line-strong: rgba(201, 160, 74, 0.38);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header-h: 78px;
  --max: 1140px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

::selection {
  background: rgba(201, 160, 74, 0.28);
  color: #fff8e6;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Language isolation: only the active locale is visible */
[data-l] {
  display: none !important;
}

html:not([data-lang]) [data-l="el"],
html[data-lang="el"] [data-l="el"],
html[data-lang="en"] [data-l="en"],
html[data-lang="bg"] [data-l="bg"] {
  display: revert !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: #fff6d8;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--gold);
  color: #111;
  padding: 8px 14px;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(7, 7, 7, 0.92);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--serif);
  letter-spacing: 0.22em;
  font-size: 1.05rem;
  font-weight: 600;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav a {
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  width: 100%;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.lang-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  padding: 7px 10px;
  cursor: pointer;
}

.lang-switch button.is-active {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  margin: 5px auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(201, 160, 74, 0.16), transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.lead {
  font-size: 1.15rem;
  max-width: 38rem;
  margin: 18px 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, #e6cc82, #c9a04a 55%, #a98436);
  color: #1b1406;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(201, 160, 74, 0.18);
}

.btn-primary:hover {
  transform: translateY(-1px);
  color: #1b1406;
}

.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-orb {
  width: min(360px, 86vw);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(228, 201, 122, 0.16), transparent 46%),
    #080808;
  border: 1px solid var(--line);
  box-shadow:
    0 0 0 18px rgba(201, 160, 74, 0.04),
    0 30px 80px rgba(0, 0, 0, 0.45);
}

.logo-orb img {
  width: 78%;
  height: auto;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
  position: relative;
}

.trust-item {
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 42px;
}

.section-kicker {
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(201, 160, 74, 0.035), transparent 18%),
    var(--bg-elev);
  border-block: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  background: rgba(201, 160, 74, 0.06);
  color: var(--gold);
}

.icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p,
.platform p {
  font-size: 0.96rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.facts {
  display: grid;
  gap: 14px;
}

.fact {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.fact dt {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact dd {
  margin: 0;
  color: var(--ink);
}

.highlight {
  margin-top: 42px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 26px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, rgba(201, 160, 74, 0.1), transparent 42%),
    #100e0a;
}

.highlight h3 {
  margin-bottom: 6px;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0c0c0c;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.platform .label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.platform h3 {
  font-size: 1.6rem;
}

.platform a {
  margin-top: auto;
  font-size: 0.92rem;
}

.insights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.insight {
  padding: 0 0 8px;
}

.insight time {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.insight h3 {
  font-size: 1.25rem;
}

.insight a {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.92rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}

.contact-card,
.legal-box {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 0;
}

.contact-list span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-list a,
.contact-list strong {
  color: var(--ink);
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--line);
  background: #060606;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.92rem;
}

.site-footer h4 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li + li {
  margin-top: 8px;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 0.86rem;
}

/* Inner pages */
.page-hero {
  padding: 72px 0 36px;
  border-bottom: 1px solid var(--line);
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin-top: 2.2rem;
}

.prose h3 {
  margin-top: 1.4rem;
}

.prose ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 0.4rem;
}

.article-list {
  display: grid;
  gap: 28px;
}

.article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.article header {
  margin-bottom: 16px;
}

.article time {
  color: var(--gold);
  font-size: 0.84rem;
}

.article p {
  margin-bottom: 1rem;
}

.page-hero {
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid,
  .cards,
  .platforms,
  .insights,
  .trust-row {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .logo-orb {
    width: 240px;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: rgba(8, 8, 8, 0.98);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px 24px;
    gap: 16px;
  }

  body.nav-open .nav {
    display: flex;
  }

  .hero,
  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .about-grid,
  .contact-grid,
  .cards,
  .platforms,
  .insights,
  .trust-row,
  .footer-grid,
  .highlight,
  .fact {
    grid-template-columns: 1fr;
  }

  .highlight {
    gap: 12px;
  }

  .fact {
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
