:root {
  color-scheme: dark;
  --bg: #0c3b48;
  --surface: rgba(11, 33, 39, 0.94);
  --surface-soft: rgba(12, 58, 68, 0.82);
  --text: #fffaf0;
  --muted: #f4d978;
  --accent: #d4af29;
  --accent-soft: rgba(212, 175, 41, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(212, 175, 41, 0.14), transparent 18%),
              radial-gradient(circle at bottom right, rgba(223, 186, 50, 0.12), transparent 20%),
              linear-gradient(180deg, #0a2b33 0%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 48px;
}

.hero {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr);
  align-items: center;
  margin-bottom: 36px;
}

.hero__content {
  max-width: 620px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.brand__logo {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #ffffff;
  padding: 8px;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  line-height: 0.98;
  color: var(--text);
}

.hero__text {
  margin: 24px 0 0;
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__visual {
  min-height: 320px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212, 175, 41, 0.18);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.links-card {
  background: rgba(12, 58, 68, 0.88);
  border: 1px solid rgba(212, 175, 41, 0.18);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.links-card h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  color: var(--text);
}

.card__subtitle {
  margin: 0 0 28px;
  color: var(--muted);
}

.links-grid {
  display: grid;
  gap: 18px;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.link-item:hover,
.link-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 41, 0.5);
  background: rgba(212, 175, 41, 0.12);
}

.link-item .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(11, 33, 39, 0.9);
  font-size: 1.4rem;
  font-weight: 700;
}

.link-item strong {
  display: block;
  font-size: 1.05rem;
}

.link-item span:last-child {
  color: #f8e8a4;
  font-size: 0.96rem;
}

.link-item.facebook .icon {
  background: #1877f2;
}

.link-item.instagram .icon {
  background: radial-gradient(circle at 30% 30%, #feda75, #fa7e1e 30%, #d62976 60%, #962fbf 90%);
}

.link-item.linkedin .icon {
  background: #0a66c2;
}

.link-item.tiktok .icon {
  background: #111111;
  box-shadow: inset 3px 0 0 #25f4ee, inset -3px 0 0 #fe2c55;
}

.link-item.website .icon {
  background: #d4af29;
  color: #0b2127;
  font-size: 0.95rem;
}

.footer {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100%, calc(100% - 24px));
  }

  .hero__visual {
    min-height: 240px;
  }

  .links-card {
    padding: 24px;
  }

  .link-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .link-item .icon {
    width: 48px;
    height: 48px;
  }
}
