:root {
  --bg: #050816;
  --bg-soft: #0c1328;
  --panel: rgba(12, 19, 40, 0.86);
  --panel-2: rgba(255,255,255,0.05);
  --line: rgba(214, 174, 92, 0.25);
  --text: #f4f1e8;
  --muted: #9da8bc;
  --accent: #d6ae5c;
  --accent-2: #8d6432;
  --success: #8cd98c;
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 174, 92, 0.15), transparent 28%),
    linear-gradient(135deg, var(--bg) 0%, #0a1121 45%, #050816 100%);
  line-height: 1.7;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(5, 8, 22, 0.75);
  border-bottom: 1px solid rgba(214, 174, 92, 0.2);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #fbe6a7);
  color: #111;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.25rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
  border-radius: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(5, 8, 22, 0.88) 0%, rgba(5, 8, 22, 0.52) 55%, rgba(5, 8, 22, 0.92) 100%),
    url('media/background%20image.jfif');
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 174, 92, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(5, 8, 22, 0.94) 0%, rgba(5, 8, 22, 0.78) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.75rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.6rem;
}

.btn {
  border: 0;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f2d387);
  color: #111;
  box-shadow: 0 12px 35px rgba(214, 174, 92, 0.25);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-card,
.panel,
.card,
.form-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.hero-card {
  border-radius: 1.6rem;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(214,174,92,0.15), transparent 60%);
  pointer-events: none;
}

.hero-card .stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.stat-box {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
}

.stat-box strong {
  font-size: 1.2rem;
  display: block;
  color: var(--accent);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem 4.5rem;
}

.section {
  margin-top: 2rem;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title h2 {
  margin: 0;
  font-size: 1.45rem;
}

.section-title p {
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-hero {
  margin-top: 1.25rem;
}
.team-hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(12, 19, 40, 0.95), rgba(5, 8, 22, 0.88));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.team-hero-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
}
.team-hero-card h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}
.team-hero-card p {
  margin: 0;
  color: var(--muted);
}
.team-member {
  text-align: center;
}
.team-member img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 280px;
  object-fit: contain;
  object-position: center;
  border-radius: 1rem;
  margin: 0 auto 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(214,174,92,0.08));
  padding: 0.35rem;
}
.team-member h3 {
  margin-bottom: 0.25rem;
}
.team-member .role {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.team-member p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card {
  border-radius: 1.2rem;
  padding: 1.25rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.card p,
.card li,
.panel p,
.panel li {
  color: var(--muted);
}

.card ul { padding-left: 1rem; }

.quote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  color: #fce5a6;
}

.panel {
  border-radius: 1.4rem;
  padding: 1.35rem;
}

.form-card {
  border-radius: 1.5rem;
  padding: 1.4rem;
}

form { display: grid; gap: 0.85rem; }
label { font-size: 0.95rem; color: #e9e2cf; }
input, select, textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(214,174,92,0.35);
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.form-status {
  min-height: 1.25rem;
  color: var(--success);
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: rgba(140, 217, 140, 0.1);
  border-left: 2px solid var(--success);
}

.muted { color: var(--muted); }

.list-block {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.media-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}

.footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem 2.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

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

@media (max-width: 920px) {
  .hero-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .navbar { flex-direction: column; align-items: flex-start; }
  .nav-links { gap: 0.75rem; }
  .hero { padding-top: 2.2rem; }
  .hero-card .stat-row { grid-template-columns: 1fr; }
  .section-title { flex-direction: column; align-items: flex-start; }
  .team-hero-card { grid-template-columns: 1fr; }
  .team-hero-card img { height: 240px; }
}
