:root {
  --surface: rgba(255, 252, 246, 0.78);
  --surface-stroke: rgba(126, 97, 57, 0.22);
  --text: #1f242c;
  --brand: #8e3420;
  --brand-2: #0f6460;
  --shadow: 0 22px 44px rgba(49, 35, 17, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  height: 100vh;
  min-height: 100vh;
  min-height: 100dvh;
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background: #f4f4f4;
  display: grid;
  place-content: center;
  padding: 12px;
  overflow: auto;
}

.landing {
  width: min(700px, 100% - 28px);
  margin: 0;
  display: grid;
  gap: 12px;
}

.links-panel,
.report-panel {
  border: 1px solid var(--surface-stroke);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-photo {
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}

.hero-photo img {
  width: min(280px, 62vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 10px 24px rgba(39, 30, 15, 0.18),
    0 0 0 1px rgba(126, 97, 57, 0.2);
}

.links-panel {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.social-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1px solid rgba(126, 97, 57, 0.3);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
  text-decoration: none;
  font-weight: 620;
  font-size: 1.15rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.official-link {
  white-space: nowrap;
  font-size: 1.02rem;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(58, 44, 22, 0.16);
}

.report-panel {
  padding: 11px;
}

.report-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  border-radius: 14px;
  font-size: clamp(1.2rem, 2.64vw, 1.68rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 12px 22px rgba(39, 30, 15, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.report-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 26px rgba(39, 30, 15, 0.3);
}

@media (max-width: 760px) {
  .landing {
    width: min(700px, 100% - 16px);
  }

  .links-panel {
    grid-template-columns: 1fr;
  }

  .report-button {
    min-height: 65px;
  }
}
