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

:root {
  --bg: #0a0a0a;
  --surface: #151515;
  --text: #f0f0f0;
  --muted: #a0a0a0;
  --primary: #d4af37;
  --secondary: #b8912d;
  --success: #28a745;
  --border: #2a2a2a;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #1f1f1f 0%, #000000 100%);
  color: var(--text);
}

.page {
  max-width: 560px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cover {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  background: #111;
  border-bottom: 2px solid var(--primary);
}

.header {
  padding: 0 22px 24px;
  position: relative;
  margin-top: -58px;
}

.logo-wrap {
  width: 116px;
  height: 116px;
  border-radius: 28px;
  background: #000;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid var(--primary);
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
}

.company {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.person {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 4px;
}

.job {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.description {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.section {
  padding: 0 22px 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
}

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

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.contact-item:hover {
  opacity: 0.8;
}

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

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #222;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid #333;
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  display: block;
  font-weight: 600;
  color: #fff;
  word-break: break-word;
}

.actions {
  display: grid;
  gap: 16px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary, .btn-secondary, .btn-success {
  font-family: 'Montserrat', sans-serif;
  color: #000;
  background: var(--gold-gradient);
  font-size: 1.15rem;
  padding: 18px 24px;
  box-shadow: 0 6px 0 #8a641c, 0 12px 24px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary:hover, .btn-secondary:hover, .btn-success:hover {
  transform: translateY(2px);
  box-shadow: 0 4px 0 #8a641c, 0 8px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary:active, .btn-secondary:active, .btn-success:active {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #8a641c, 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.social {
  flex: 1 1 calc(50% - 6px);
  min-width: 120px;
  text-decoration: none;
  color: var(--primary);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social:hover {
  background: #222;
  border-color: var(--primary);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  background: #111;
  border: 1px solid var(--border);
}

.footer-space {
  height: 32px;
}

@media (max-width: 480px) {
  .company {
    font-size: 1.8rem;
  }

  .cover {
    height: 210px;
  }

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

  .social {
    flex-basis: 100%;
  }
}
