/* DOMARK Branded Theme: black / white / gold */
:root {
  --bg: #0b0b0c;
  --panel: #111216;
  --text: #eaeaec;
  --muted: #a9acb3;
  --brand: #d4af37; /* gold */
  --brand2:#f1d778;
  --accent: #ffffff;
  --card: #151720;
  --shadow: 0 10px 28px rgba(0,0,0,.28);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% -10%, rgba(212,175,55,0.07), transparent 40%),
              radial-gradient(900px 500px at 110% 10%, rgba(212,175,55,0.06), transparent 50%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(11,11,12,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo img { height: 36px; vertical-align: middle; }
.nav-links a {
  color: var(--text); text-decoration: none; margin-left: 16px; font-weight: 500; opacity: .9;
}
.nav-links a:hover { opacity: 1; }

.btn { background: linear-gradient(145deg, var(--brand), var(--brand2));
  color: #111; padding: 12px 18px; border-radius: 999px; text-decoration: none; display: inline-block; font-weight: 800; }
.btn:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn.ghost { background: transparent; color: var(--accent); border: 1px solid rgba(255,255,255,0.2); }
.btn-small { padding: 8px 14px; font-size: 14px; }

.hero { padding: 84px 0 48px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.hero h1 { font-size: clamp(34px, 4vw, 56px); line-height: 1.1; margin: 0 0 10px; }
.accent { color: var(--brand); }
.tagline { font-size: 18px; color: var(--brand2); margin: 2px 0 12px; font-weight: 700; }
.lead { color: var(--muted); margin-bottom: 16px; }
.badges { display: flex; gap: 14px; padding: 0; list-style: none; margin-top: 14px; color: var(--muted); }
.hero-media.card img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06); }

.section { padding: 68px 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)); }
.section-title { font-size: clamp(24px, 3vw, 34px); margin: 0 0 24px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); }
.service h3 { margin-top: 0; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.timeline .step h4 { margin: 0 0 6px; }

.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
blockquote { margin: 0; }
blockquote span { display: block; margin-top: 8px; color: var(--muted); }

.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 18px; }
.about-card h3 { margin-top: 0; }
.facts { margin: 10px 0 0; padding-left: 18px; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 18px; }
.form label { display: grid; gap: 6px; margin-bottom: 10px; }
input, textarea {
  background: #0f1116; border: 1px solid rgba(255,255,255,0.12);
  color: var(--text); padding: 12px 12px; border-radius: 10px;
}
.hint { color: var(--muted); font-size: 12px; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.08); padding: 22px 0; margin-top: 40px; }
.footer-grid { display: flex; align-items: center; justify-content: space-between; }
.footer-links a { color: var(--muted); text-decoration: none; margin-left: 12px; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 1080px) {
  .timeline { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .hero-grid, .grid-3, .about-grid, .contact-grid, .quotes { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .badges { flex-wrap: wrap; }
}

/* Language switch */
.lang-switch { display:flex; align-items:center; gap:8px; margin-left: 12px; }
.lang-switch .sep { color: var(--muted); opacity:.8; }
.lang-switch .lang { color: var(--text); text-decoration:none; font-weight:700; opacity:.85; }
.lang-switch .lang:hover { opacity:1; }
.lang-switch .active { color: var(--brand); opacity:1; }
@media (max-width: 640px) { .lang-switch { display:none; } }
