@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #08111f;
  --bg-soft: #0d1a2d;
  --card: #111f34;
  --card-light: #16263d;
  --text: #eef4ff;
  --muted: #a9b7c9;
  --line: rgba(255, 255, 255, 0.10);
  --accent: #d4af37;
  --accent-soft: rgba(212, 175, 55, 0.16);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.10), transparent 34%),
              linear-gradient(180deg, #08111f 0%, #0b1525 48%, #070d17 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark,
.avatar {
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.91rem;
}

nav a:hover,
footer a:hover {
  color: var(--accent);
}

.hero {
  padding: 92px 0 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 42px;
  align-items: center;
}

.eyebrow,
.section-label {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 14px;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 740px;
  font-size: clamp(2.25rem, 4.9vw, 4.25rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.22rem;
  margin-bottom: 12px;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(0.98rem, 1.55vw, 1.12rem);
  letter-spacing: -0.01em;
}

.hero-text {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  margin: 24px 0 34px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn.primary {
  background: var(--accent);
  color: #111;
}

.btn.secondary {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.profile-card {
  background: linear-gradient(180deg, rgba(22, 38, 61, 0.92), rgba(17, 31, 52, 0.92));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.photo-frame {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15), rgba(255, 255, 255, 0.04));
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
}

.photo-placeholder {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.42);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 1.35rem;
}

.profile-name {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.profile-card h2 {
  font-size: 1.34rem;
  letter-spacing: -0.02em;
}

.profile-card p,
.profile-card li,
.content p,
.disclaimer p,
.contact-card p,
.small,
.experience-card p,
.legal-list p {
  color: var(--muted);
}

.profile-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.profile-card li:last-child {
  border-bottom: 0;
}

.section {
  padding: 82px 0;
}

.alt {
  background: rgba(255, 255, 255, 0.025);
  border-block: 1px solid var(--line);
}

.two-columns {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}

.content p {
  font-size: 1.05rem;
  margin-top: 0;
}

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

.service-card,
.experience-card {
  background: rgba(17, 31, 52, 0.74);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  min-height: 218px;
}

.service-card p,
.experience-card p {
  margin: 0;
}

.highlight-card {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15), rgba(17, 31, 52, 0.78));
  border-color: rgba(212, 175, 55, 0.26);
}

.big-number {
  display: block;
  font-size: 3.6rem;
  line-height: 0.9;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.07em;
  margin-bottom: 18px;
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.legal-list div {
  background: rgba(17, 31, 52, 0.62);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}

.legal-list h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.legal-list p {
  margin: 0;
  font-size: 0.96rem;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill-list span {
  border: 1px solid rgba(212, 175, 55, 0.30);
  background: var(--accent-soft);
  color: #f1d678;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

.disclaimer {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
}

.disclaimer p {
  margin: 0;
  font-size: 0.94rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 38px;
  align-items: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.16), rgba(17, 31, 52, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 32px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 620px;
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-item {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 17, 31, 0.36);
}

.contact-item span {
  display: block;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item strong {
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-actions {
  justify-content: flex-end;
}

.premium-actions {
  margin-top: 8px;
  justify-content: flex-start;
}

.small {
  width: 100%;
  margin: 0;
  text-align: right;
  font-size: 0.94rem;
}

footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media (max-width: 980px) {
  nav {
    gap: 12px;
    font-size: 0.86rem;
  }
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .two-columns,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .cards,
  .experience-grid,
  .legal-list {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .small {
    text-align: left;
  }

  .footer-content {
    flex-direction: column;
  }
}
